diff --git a/atmosphere/vite.config.ts b/atmosphere/vite.config.ts index 48bfde9b6..2dc9f8407 100644 --- a/atmosphere/vite.config.ts +++ b/atmosphere/vite.config.ts @@ -2,10 +2,10 @@ import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' export default defineConfig({ - plugins: [react()], - base: '/', define: { 'import.meta.env.VITE_GOOGLE_MAP_API_KEY': JSON.stringify(process.env.VITE_GOOGLE_MAP_API_KEY) - } - //base: '/pkg/atmosphere/', + }, + base: '/', + //base: '/pkg/atmosphere/', + plugins: [react()] })