This commit is contained in:
Charles Le Maux 2024-06-26 22:48:56 +01:00
parent e0f0a71645
commit 13f6dc8ce1
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
"indexes": "firestore.indexes.json" "indexes": "firestore.indexes.json"
}, },
"hosting": { "hosting": {
"public": "public", "public": "dist",
"ignore": [ "ignore": [
"firebase.json", "firebase.json",
"**/.*", "**/.*",

View File

@ -5,6 +5,6 @@ import react from '@vitejs/plugin-react'
export default defineConfig({ export default defineConfig({
plugins: [react()], plugins: [react()],
build: { build: {
outDir: 'public', outDir: 'dist',
}, },
}); });