mirror of
https://mirror.suhoan.cn/https://github.com/EasyTier/EasyTier.git
synced 2025-12-12 20:57:26 +08:00
10 lines
241 B
TypeScript
10 lines
241 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()],
|
|
})
|