aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/non-monorepo/next.config.js
blob: 3d3bc9990d8b568b4ce4c01840663f17961cb9fd (plain) (blame)
1
2
3
4
5
6
7
/** @type {import('next').NextConfig} */
const nextConfig = {
  reactStrictMode: true,
  swcMinify: true,
};

module.exports = nextConfig;