rsnext/examples/public-file-serving/now.json

12 lines
426 B
JSON
Raw Normal View History

{
"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" }
}
]
}