mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
2fdd43c307
* ADD with-firebase-hosting-and-docker example * Improve doc
17 lines
309 B
JSON
17 lines
309 B
JSON
{
|
|
"hosting": {
|
|
"public": "dist/public",
|
|
"rewrites": [
|
|
{
|
|
"source": "**/**",
|
|
"function": "app"
|
|
}
|
|
],
|
|
"predeploy": "yarn build-public"
|
|
},
|
|
"functions": {
|
|
"source": "dist/functions",
|
|
"predeploy": "yarn build-funcs && yarn build-app && yarn copy-deps"
|
|
}
|
|
}
|