0

I successfully deployed my site to Firebase using the Firebase CLI but when I try to load a particular page, it doesn't render correctly and in the console I get a 'Failed to load resource: the server responded with a status of 404()' error. The missing files are CardJs' card-js.min.css and card-js.min.js. what do I do?

firebase.json (from the comments):

{
    "database": {
        "rules": "database.rules.json"
    },
    "hosting": {
        "public": "Auction",
        "ignore": ["firebase.json", "/.*", "**/node_modules/"]
    }
}
Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
James Olinya
  • 1
  • 1
  • 1

1 Answers1

0

The link was not found because it was pointing to 'path/to/CardJS' instead of 'path/to/CardJs'. It somehow worked when served locally because according to some people, Windows is case insensitive.

James Olinya
  • 1
  • 1
  • 1