Files
pp-tcms/frontend/next.config.js
Takeshi Kimata a8cd231a82 Add Dockerfile
2024-06-16 14:30:08 +09:00

17 lines
436 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,
},
output: 'standalone',
};
module.exports = withNextIntl(nextConfig);