rsnext/examples/public-file-serving/now.json
Luis Fernando Alvarez D 3a5c1ebe04 Add docs to public (#7239)
* New example: public-file-serving

* Updated sitemap-and-robots examples
2019-05-06 15:42:54 +02:00

12 lines
No EOL
426 B
JSON

{
"version": 2,
"alias": "https://serverless-static-files.now.sh",
"builds": [{ "src": "next.config.js", "use": "@now/next" }],
"routes": [
{ "src": "/_next/static/(?:[^/]+/pages|chunks|runtime)/.+", "headers": { "cache-control": "immutable" } },
{
"src": "^/(favicon.ico|manifest.json|humans.txt|sitemap.xml|sitemap.xsl)$",
"headers": { "cache-control": "max-age=300 must-revalidate" }
}
]
}