diff --git a/firebase.json b/firebase.json index 4335fd1..e86731b 100644 --- a/firebase.json +++ b/firebase.json @@ -4,7 +4,7 @@ "indexes": "firestore.indexes.json" }, "hosting": { - "public": "public", + "public": "dist", "ignore": [ "firebase.json", "**/.*", diff --git a/vite.config.js b/vite.config.js index b63c349..ab92e81 100644 --- a/vite.config.js +++ b/vite.config.js @@ -5,6 +5,6 @@ import react from '@vitejs/plugin-react' export default defineConfig({ plugins: [react()], build: { - outDir: 'public', + outDir: 'dist', }, });