mirror of
https://mirror.suhoan.cn/https://github.com/EasyTier/EasyTier.git
synced 2025-12-12 20:57:26 +08:00
12 lines
313 B
TypeScript
12 lines
313 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
// import { viteSingleFile } from "vite-plugin-singlefile"
|
|
|
|
const WEB_BASE_URL = process.env.WEB_BASE_URL || '';
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
base: WEB_BASE_URL,
|
|
plugins: [vue(),/* viteSingleFile() */],
|
|
})
|