popper/vite.config.ts

9 lines
172 B
TypeScript
Raw Permalink Normal View History

2022-10-19 17:53:16 +00:00
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
2022-10-19 16:22:53 +00:00
// https://vitejs.dev/config/
export default defineConfig({
2022-10-19 17:53:16 +00:00
plugins: [vue()],
base: '',
});