Fixed allowed hosts issue

This commit is contained in:
2025-01-23 12:27:03 +00:00
parent b377240753
commit 1047b96c0f

View File

@@ -4,4 +4,7 @@ import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
allowedHosts: ['frontend'],
},
})