Created
July 4, 2019 19:33
-
-
Save sehmaschine/6133f9025f78be6d4ec26f23e95c9f5a to your computer and use it in GitHub Desktop.
Custom 404 with Gatsby and Now
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": 2, | |
"name": "xxx", | |
"builds": [ | |
{ | |
"src": "package.json", | |
"use": "@now/static-build", | |
"config": { "distDir": "public" } | |
} | |
], | |
"routes": [ | |
{ "handle": "filesystem" }, | |
{ "src": "/(.*)", "dest": "/404.html", "status": 404 } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment