1
0

fix config

This commit is contained in:
2025-11-21 15:54:37 +09:00
parent 4de551e252
commit 7950ee32c1

View File

@@ -2,10 +2,10 @@ import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react' import react from '@vitejs/plugin-react'
export default defineConfig({ export default defineConfig({
plugins: [react()],
base: '/',
define: { define: {
'import.meta.env.VITE_GOOGLE_MAP_API_KEY': JSON.stringify(process.env.VITE_GOOGLE_MAP_API_KEY) '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()]
}) })