homemanager-fe/vite.config.ts

8 lines
160 B
TypeScript
Raw Normal View History

2023-01-25 17:01:58 +00:00
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
2023-01-16 19:37:39 +00:00
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
2023-01-25 17:01:58 +00:00
});