From 47bde2b22cf559922908a97a02c5b1d0dffa2d25 Mon Sep 17 00:00:00 2001 From: Daniel Svitan Date: Tue, 16 May 2023 19:00:23 -0700 Subject: [PATCH] :bug: Fixes build dir --- build/404.html | 33 ------------------ build/index.html | 89 ------------------------------------------------ firebase.json | 12 +++---- 3 files changed, 4 insertions(+), 130 deletions(-) delete mode 100644 build/404.html delete mode 100644 build/index.html diff --git a/build/404.html b/build/404.html deleted file mode 100644 index 829eda8..0000000 --- a/build/404.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - Page Not Found - - - - -
-

404

-

Page Not Found

-

The specified file was not found on this website. Please check the URL for mistakes and try again.

-

Why am I seeing this?

-

This page was generated by the Firebase Command-Line Interface. To modify it, edit the 404.html file in your project's configured public directory.

-
- - diff --git a/build/index.html b/build/index.html deleted file mode 100644 index 861f2d2..0000000 --- a/build/index.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - Welcome to Firebase Hosting - - - - - - - - - - - - - - - - - - - -
-

Welcome

-

Firebase Hosting Setup Complete

-

You're seeing this because you've successfully setup Firebase Hosting. Now it's time to go build something extraordinary!

- Open Hosting Documentation -
-

Firebase SDK Loading…

- - - - diff --git a/firebase.json b/firebase.json index fe9a924..dda6f6c 100644 --- a/firebase.json +++ b/firebase.json @@ -1,10 +1,6 @@ { - "hosting": { - "public": "build/", - "ignore": [ - "firebase.json", - "**/.*", - "**/node_modules/**" - ] - } + "hosting": { + "public": "dist/", + "ignore": ["firebase.json", "**/.*", "**/node_modules/**"] + } }