De-experimentalize redirects for rosetta example (#15554)

Fixes #15552
This commit is contained in:
Joe Haddad 2020-07-28 04:36:34 -04:00 committed by GitHub
parent 4dcf94e5c4
commit 5b4274a590
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,11 @@
module.exports = {
experimental: {
redirects() {
return [
{
source: '/',
permanent: true,
destination: '/en',
},
]
},
redirects() {
return [
{
source: '/',
destination: '/en',
permanent: true,
},
]
},
}