frontend_nyla/frontend/vite.config.ts
2025-05-07 11:59:22 +02:00

16 lines
340 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { httpsConfig } from './server.ts';
export default defineConfig({
plugins: [react()],
envPrefix: 'VITE_',
server: {
https: false,
},
css: {
modules: {
scopeBehaviour: 'local', // Default behavior for CSS modules
},
},
});