You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
776 B
26 lines
776 B
import { defineConfig, loadEnv } from 'vite' |
|
const { resolve } = require('path') |
|
import createVitePlugins from './vite/plugins' |
|
import { OUTPUT_DIR } from '../../build/constant' |
|
|
|
// https://vitejs.dev/config/ |
|
export default ({ mode, command }) => { |
|
const env = loadEnv(mode, process.cwd()) |
|
const { VITE_APP_BASE } = env |
|
return defineConfig({ |
|
base: VITE_APP_BASE, |
|
resolve: { |
|
alias: { |
|
'~': resolve(__dirname, './'), |
|
"@": resolve(__dirname, "./src"), |
|
"components": resolve(__dirname, "./src/components"), |
|
"styles": resolve(__dirname, "./src/styles"), |
|
"utils": resolve(__dirname, "./src/utils"), |
|
} |
|
}, |
|
plugins: createVitePlugins(env, command === 'build'), |
|
build: { |
|
outDir: OUTPUT_DIR |
|
} |
|
}) |
|
}
|
|
|