gohttpdUi/vite.config.ts

8 lines
156 B
TypeScript
Raw Normal View History

2021-10-10 09:59:52 +08:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
2021-12-07 14:36:07 +08:00
plugins: [vue()]
2021-10-10 09:59:52 +08:00
})