fileserver/frontend/vite.config.ts

19 lines
400 B
TypeScript
Raw Normal View History

2022-09-03 23:32:20 +02:00
import { fileURLToPath, URL } from 'node:url';
2022-08-31 14:28:35 +02:00
2022-09-03 23:32:20 +02:00
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import vueJsx from '@vitejs/plugin-vue-jsx';
2022-08-31 14:28:35 +02:00
// https://vitejs.dev/config/
export default defineConfig({
2022-09-03 23:32:20 +02:00
plugins: [vue(), vueJsx()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
build: {
chunkSizeWarningLimit: 1024 * 1024
}
2022-08-31 14:28:35 +02:00
});