You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
carbon/now.json

35 lines
717 B
JSON

{
"name": "carbon",
"version": 2,
"public": true,
"builds": [{ "src": "package.json", "use": "@now/next" }],
"routes": [
{ "src": "^/embed(.*)", "dest": "/embed.html" },
{
"src": "^/service-worker.js$",
"dest": "/_next/static/service-worker.js",
"headers": {
"Service-Worker-Allowed": "/"
}
},
{
"src": "^/static/(.*)",
"continue": true,
"headers": {
"cache-control": "public, max-age=43200, immutable"
}
},
{ "handle": "filesystem" },
{ "src": "^/(.*)", "dest": "/index.html" }
],
"build": {
"env": {
"NODE_ENV": "production"
}
},
"github": {
"autoAlias": false,
"silent": true
}
}