This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
next-deploy/packages/aws-lambda-builder/__tests__/default-handler/default-build-manifest-with-404.json
2020-07-05 16:56:58 -07:00

67 lines
2 KiB
JSON

{
"buildId": "build-id2",
"pages": {
"ssr": {
"dynamic": {
"/:root": {
"file": "pages/[root].js",
"regex": "^/([^/]+?)(?:/)?$"
},
"/blog/:id": {
"file": "pages/blog/[id].js",
"regex": "^/blog/([^/]+?)(?:/)?$"
},
"/customers/:customer": {
"file": "pages/customers/[customer].js",
"regex": "^/customers/([^/]+?)(?:/)?$"
},
"/customers/:customer/profile": {
"file": "pages/customers/[customer]/profile.js",
"regex": "^/customers/([^/]+?)/profile(?:/)?$"
},
"/customers/:customer/:post": {
"file": "pages/customers/[customer]/[post].js",
"regex": "^/customers/([^/]+?)/([^/]+?)(?:/)?$"
},
"/customers/:catchAll*": {
"file": "pages/customers/[...catchAll].js",
"regex": "^/customers(?:/((?:[^/#?]+?)(?:/(?:[^/#?]+?))*))?[/#?]?$"
}
},
"nonDynamic": {
"/": "pages/index.js",
"/customers": "pages/customers/index.js",
"/customers/new": "pages/customers/new.js",
"/api/getCustomers": "pages/api/getCustomers.js",
"/_error": "pages/_error.js",
"/404": "pages/404.html"
}
},
"html": {
"nonDynamic": {
"/": "pages/index.html",
"/index": "pages/index.html",
"/terms": "pages/terms.html",
"/404": "pages/404.html"
},
"dynamic": {
"/users/:user": {
"file": "pages/users/[user].html",
"regex": "^/users/([^/]+?)(?:/)?$"
},
"/users/:user*": {
"file": "pages/users/[...user].html",
"regex": "^/users(?:/((?:[^/#?]+?)(?:/(?:[^/#?]+?))*))?[/#?]?$"
},
"/:username/:id": {
"file": "pages/[username]/[id].html",
"regex": "^/([^/]+?)/([^/]+?)(?:/)?$"
}
}
}
},
"publicFiles": {
"/favicon.ico": "favicon.ico",
"/manifest.json": "manifest.json"
}
}