mirror of
https://mirror.suhoan.cn/https://github.com/EasyTier/EasyTier.git
synced 2025-12-12 12:47:25 +08:00
10 lines
249 B
TypeScript
10 lines
249 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
// import { viteSingleFile } from "vite-plugin-singlefile"
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
base: '',
|
|
plugins: [vue(),/* viteSingleFile() */],
|
|
})
|