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 }, }, });