-
-
Notifications
You must be signed in to change notification settings - Fork 971
/
vite.config.mjs
48 lines (47 loc) · 1.06 KB
/
vite.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'node:path'
import autoprefixer from 'autoprefixer'
export default defineConfig(() => {
return {
plugins: [vue()],
base: './',
css: {
postcss: {
plugins: [
autoprefixer({}), // add options if needed
],
},
preprocessorOptions: {
scss: {
quietDeps: true,
silenceDeprecations: ['import', 'legacy-js-api'],
},
},
},
resolve: {
alias: [
// webpack path resolve to vitejs
{
find: /^~(.*)$/,
replacement: '$1',
},
{
find: '@/',
replacement: `${path.resolve(__dirname, 'src')}/`,
},
{
find: '@',
replacement: path.resolve(__dirname, '/src'),
},
],
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue', '.scss'],
},
server: {
port: 3000,
proxy: {
// https://vitejs.dev/config/server-options.html
},
},
}
})