next.js/test/integration/i18n-support-fallback-rewrite/next.config.js
next.config.js17 lines239 B
module.exports = {
  i18n: {
    locales: ['en', 'fr'],
    defaultLocale: 'en',
  },
  rewrites() {
    return {
      fallback: [
        {
          source: '/:path*',
          destination: '/another',
        },
      ],
    }
  },
}
Quest for Codev2.0.0
/
SIGN IN