54 lines
1.0 KiB
JavaScript
54 lines
1.0 KiB
JavaScript
|
import {
|
||
|
defineConfig,
|
||
|
loadEnv
|
||
|
} from 'vite';
|
||
|
import vue from '@vitejs/plugin-vue';
|
||
|
import AutoImport from 'unplugin-auto-import/vite'
|
||
|
import Components from 'unplugin-vue-components/vite'
|
||
|
import {
|
||
|
ElementPlusResolver
|
||
|
} from 'unplugin-vue-components/resolvers'
|
||
|
import {
|
||
|
createHtmlPlugin
|
||
|
} from 'vite-plugin-html';
|
||
|
import {
|
||
|
resolve
|
||
|
} from 'path';
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default ({
|
||
|
mode
|
||
|
}) => defineConfig({
|
||
|
plugins: [
|
||
|
vue(),
|
||
|
AutoImport({
|
||
|
resolvers: [ElementPlusResolver()],
|
||
|
}),
|
||
|
Components({
|
||
|
resolvers: [ElementPlusResolver()],
|
||
|
}),
|
||
|
createHtmlPlugin({
|
||
|
minify: true,
|
||
|
template: 'index.html',
|
||
|
inject: {
|
||
|
data: {
|
||
|
title: loadEnv(mode, process.cwd()).VITE_SITE_NAME,
|
||
|
},
|
||
|
},
|
||
|
}),
|
||
|
],
|
||
|
resolve: {
|
||
|
alias: [{
|
||
|
find: '@',
|
||
|
replacement: resolve(__dirname, "src"),
|
||
|
}, ]
|
||
|
},
|
||
|
css: {
|
||
|
preprocessorOptions: {
|
||
|
scss: {
|
||
|
charset: false,
|
||
|
additionalData: `@import "./src/style/global.scss";`
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
})
|