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