2024-11-08 23:33:17 +08:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
2025-04-19 22:38:56 +08:00
|
|
|
// import { viteSingleFile } from "vite-plugin-singlefile"
|
2024-11-08 23:33:17 +08:00
|
|
|
|
2025-04-19 22:56:20 +08:00
|
|
|
const WEB_BASE_URL = process.env.WEB_BASE_URL || '';
|
|
|
|
|
|
2024-11-08 23:33:17 +08:00
|
|
|
// https://vite.dev/config/
|
|
|
|
|
export default defineConfig({
|
2025-04-19 22:56:20 +08:00
|
|
|
base: WEB_BASE_URL,
|
2025-04-19 22:38:56 +08:00
|
|
|
plugins: [vue(),/* viteSingleFile() */],
|
2024-11-08 23:33:17 +08:00
|
|
|
})
|