Files
pp-tcms/frontend/next.config.js
Takeshi Kimata 1e01535134 i18n by next-intl
2024-05-03 11:44:02 +09:00

16 lines
412 B
JavaScript

const createNextIntlPlugin = require("next-intl/plugin");
const withNextIntl = createNextIntlPlugin();
/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
};
module.exports = withNextIntl(nextConfig);