next.config.js 189 B

123456789
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. reactStrictMode: true,
  4. typescript: {
  5. tsconfigPath: 'tsconfig.build.client.json',
  6. },
  7. };
  8. module.exports = nextConfig;