vue/vite.config.ts

9 lines
174 B
TypeScript
Raw Normal View History

2022-04-08 06:35:54 +00:00
import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite'
// https://vitejs.dev/config/
export default defineConfig({
base: './',
2022-04-08 06:40:34 +00:00
plugins: [vue()]
2022-04-08 06:35:54 +00:00
})