2024-08-18 19:49:16 +08:00
|
|
|
import path from 'node:path'
|
|
|
|
import process from 'node:process'
|
|
|
|
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
2024-09-03 08:20:43 +08:00
|
|
|
import { visualizer } from 'rollup-plugin-visualizer'
|
2024-09-18 09:44:51 +08:00
|
|
|
import UnoCSS from 'unocss/vite'
|
2024-09-03 08:20:43 +08:00
|
|
|
import AutoImport from 'unplugin-auto-import/vite'
|
2024-09-18 09:44:51 +08:00
|
|
|
import Components from 'unplugin-vue-components/vite'
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import { nodePolyfills } from 'vite-plugin-node-polyfills'
|
|
|
|
import vueDevTools from 'vite-plugin-vue-devtools'
|
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({
|
2024-12-19 08:13:28 +08:00
|
|
|
imports: [
|
|
|
|
`vue`,
|
|
|
|
`pinia`,
|
|
|
|
`@vueuse/core`,
|
|
|
|
],
|
|
|
|
dirs: [
|
|
|
|
`./src/stores`,
|
|
|
|
`./src/utils/toast`,
|
|
|
|
],
|
2024-09-03 08:20:43 +08:00
|
|
|
}),
|
|
|
|
Components({
|
2024-12-15 20:15:06 +08:00
|
|
|
resolvers: [],
|
2024-09-03 08:20:43 +08:00
|
|
|
}),
|
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,
|
|
|
|
},
|
2024-12-21 20:21:08 +08:00
|
|
|
build: {
|
|
|
|
rollupOptions: {
|
|
|
|
output: {
|
|
|
|
chunkFileNames: `static/js/md-[name]-[hash].js`,
|
|
|
|
entryFileNames: `static/js/md-[name]-[hash].js`,
|
|
|
|
assetFileNames: `static/[ext]/md-[name]-[hash].[ext]`,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|