I have a problem with Firebase Hosting when uploading my Vue.js project that connects with firebase
The architecture of the files is as follows.
and the file firebase.json
is the following
or in code
{
"hosting": {
"public": "src",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
Screenshot of firebase error
Greetings, thanks in advance.