rsnext/test/integration/env-config/app/next.config.js

14 lines
239 B
JavaScript
Raw Normal View History

module.exports = {
experimental: {
async redirects() {
return [
{
source: '/hello',
permanent: false,
destination: `/${process.env.NEXT_PUBLIC_TEST_DEST}`,
},
]
},
},
}