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.
92 lines
2.6 KiB
92 lines
2.6 KiB
import { defineConfig, loadEnv } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import path from 'path'
|
|
import AutoImport from 'unplugin-auto-import/vite'
|
|
import Components from 'unplugin-vue-components/vite'
|
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
|
|
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
|
|
import viteCompression from 'vite-plugin-compression'
|
|
|
|
// eslint
|
|
import eslintPlugin from 'vite-plugin-eslint'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(({ command })=> {
|
|
return {
|
|
plugins: [
|
|
vue(),
|
|
createSvgIconsPlugin({
|
|
iconDirs: [path.resolve(process.cwd(), 'src/icons/svg')],
|
|
symbolId: 'icon-[dir]-[name]'
|
|
}),
|
|
// 自动引入内容
|
|
AutoImport({
|
|
imports: [
|
|
'vue',
|
|
'vue-router'
|
|
],
|
|
dirs: [
|
|
'src/hooks/**',
|
|
'src/stores/**',
|
|
'src/utils/**'
|
|
],
|
|
resolvers: command === 'build' ? [ElementPlusResolver()] : [],
|
|
dts: 'src/auto-import/imports.d.ts',
|
|
eslintrc: {
|
|
enabled: false
|
|
}
|
|
}),
|
|
// 自动引入组件
|
|
Components({
|
|
dirs: [
|
|
'src/components'
|
|
],
|
|
resolvers: command === 'build' ? [ElementPlusResolver()] : [],
|
|
dts: 'src/auto-import/components.d.ts'
|
|
}),
|
|
// 对大于 1k 的文件进行压缩
|
|
viteCompression({
|
|
threshold: 1000,
|
|
})
|
|
].concat(
|
|
// eslint
|
|
command !== 'build' ? [eslintPlugin({ include: ['src/**/*.js', 'src/**/*.vue', 'src/*.js', 'src/*.vue'] })] : []
|
|
),
|
|
server: {
|
|
host: true,
|
|
port: 9527,
|
|
open: true
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, 'src'),
|
|
'vue-i18n': 'vue-i18n/dist/vue-i18n.cjs.js'
|
|
}
|
|
},
|
|
build: {
|
|
base: './',
|
|
rollupOptions: {
|
|
// 静态资源分类打包
|
|
output: {
|
|
chunkFileNames: 'static/js/[name]-[hash].js',
|
|
entryFileNames: 'static/js/[name]-[hash].js',
|
|
assetFileNames: 'static/[ext]/[name]-[hash].[ext]',
|
|
// 静态资源分拆打包
|
|
manualChunks (id) {
|
|
if (id.includes('node_modules')) {
|
|
if (id.toString().indexOf('.pnpm/') !== -1) {
|
|
return id.toString().split('.pnpm/')[1].split('/')[0].toString();
|
|
} else if (id.toString().indexOf('node_modules/') !== -1) {
|
|
return id.toString().split('node_modules/')[1].split('/')[0].toString();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
sourcemap: false,
|
|
target: 'es2015',
|
|
reportCompressedSize: false
|
|
}
|
|
}
|
|
})
|