aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/non-monorepo/next.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/non-monorepo/next.config.js')
-rw-r--r--examples/non-monorepo/next.config.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/non-monorepo/next.config.js b/examples/non-monorepo/next.config.js
new file mode 100644
index 0000000..3d3bc99
--- /dev/null
+++ b/examples/non-monorepo/next.config.js
@@ -0,0 +1,7 @@
+/** @type {import('next').NextConfig} */
+const nextConfig = {
+ reactStrictMode: true,
+ swcMinify: true,
+};
+
+module.exports = nextConfig;