rsnext/examples/with-firebase-hosting/firebase.json

16 lines
321 B
JSON
Raw Normal View History

{
"hosting": {
"public": "dist/public",
"rewrites": [
{
"source": "**/**",
"function": "next"
}
],
"predeploy": "npm run build-public"
},
"functions": {
"source": "dist/functions",
"predeploy": "npm run build-funcs && npm run build-app && npm run copy-deps"
}
}