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/"]
}
}