2024-08-18 19:49:16 +08:00
|
|
|
import path from 'node:path'
|
|
|
|
import process from 'node:process'
|
|
|
|
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
2024-08-31 10:48:40 +08:00
|
|
|
import UnoCSS from 'unocss/vite'
|
|
|
|
import vueDevTools from 'vite-plugin-vue-devtools'
|
2024-08-18 19:49:16 +08:00
|
|
|
import { nodePolyfills } from 'vite-plugin-node-polyfills'
|
2024-09-03 08:20:43 +08:00
|
|
|
import { visualizer } from 'rollup-plugin-visualizer'
|
|
|
|
import AutoImport from 'unplugin-auto-import/vite'
|
|
|
|
import Components from 'unplugin-vue-components/vite'
|
|
|
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
|
2024-08-18 19:49:16 +08:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
2024-08-31 10:48:40 +08:00
|
|
|
export default defineConfig({
|
|
|
|
base: process.env.SERVER_ENV === `NETLIFY` ? `/` : `/md/`, // 基本路径, 建议以绝对路径跟随访问目录
|
|
|
|
define: {
|
|
|
|
process,
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
vue(),
|
|
|
|
UnoCSS(),
|
|
|
|
vueDevTools(),
|
|
|
|
nodePolyfills({
|
|
|
|
include: [`path`, `util`, `timers`, `stream`, `fs`],
|
|
|
|
overrides: {
|
|
|
|
// Since `fs` is not supported in browsers, we can use the `memfs` package to polyfill it.
|
|
|
|
// fs: 'memfs',
|
2024-08-18 19:49:16 +08:00
|
|
|
},
|
2024-08-31 10:48:40 +08:00
|
|
|
}),
|
2024-09-03 08:20:43 +08:00
|
|
|
process.env.ANALYZE === `true` && visualizer({
|
|
|
|
emitFile: true,
|
|
|
|
filename: `stats.html`,
|
|
|
|
}),
|
|
|
|
AutoImport({
|
|
|
|
resolvers: [ElementPlusResolver()],
|
|
|
|
}),
|
|
|
|
Components({
|
|
|
|
resolvers: [ElementPlusResolver()],
|
|
|
|
}),
|
2024-08-31 10:48:40 +08:00
|
|
|
],
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
'@': path.resolve(__dirname, `./src`),
|
2024-08-18 19:49:16 +08:00
|
|
|
},
|
2024-08-31 10:48:40 +08:00
|
|
|
},
|
|
|
|
css: {
|
|
|
|
devSourcemap: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|