36
loading...
This website collects cookies to deliver better user experience
After a short email exchange I deleted the app on Vercel and they nicely reactivated my account.
next build
SSR lets you use functions like getServerSideProps while image edge caching is required for next/image
The netlify.toml file is a configuration file that specifies how Netlify builds and deploys your site — including redirects, branch and context-specific settings, and more. - Netlify
async redirects() {
return [
{
source: '/home',
destination: '/',
permanent: true,
},
{
source: '/dictionary/:slug',
destination: '/dictionary/?keyword=:slug',
permanent: true,
}
]
},
[[redirects]]
from = "/home"
to = "/"
status = 301
[[redirects]]
from = "/dictionary/*"
to = "/dictionary?keyword=:splat"
status = 301
36