mirror of
https://github.com/EasyTier/EasyTier.git
synced 2024-11-16 03:32:43 +08:00
9 lines
229 B
TypeScript
9 lines
229 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({
|
||
|
plugins: [vue(), viteSingleFile()],
|
||
|
})
|