next.js/examples/i18n-routing-pages/next.config.js
next.config.js14 lines187 B
// @ts-check

/**
 * @type {import('next').NextConfig}
 **/
const nextConfig = {
  i18n: {
    locales: ["en", "fr", "nl"],
    defaultLocale: "en",
  },
};

module.exports = nextConfig;
Quest for Codev2.0.0
/
SIGN IN