config prod tests

This commit is contained in:
Léo 2025-03-06 23:46:56 +01:00
parent 9d7941a9c0
commit f9557ec642

View File

@ -1,7 +1,17 @@
import { defineConfig } from 'vite' import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue' import vue from '@vitejs/plugin-vue';
// https://vite.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [vue()], plugins: [vue()],
}) define: {
'process.env': process.env,
},
server: {
host: true,
strictPort: true,
port: 5000,
watch: {
usePolling: true,
},
},
});