diff options
Diffstat (limited to '174bg/website/next.config.mjs')
| -rw-r--r-- | 174bg/website/next.config.mjs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/174bg/website/next.config.mjs b/174bg/website/next.config.mjs new file mode 100644 index 0000000..218fe4a --- /dev/null +++ b/174bg/website/next.config.mjs @@ -0,0 +1,8 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + /* config options here */ + reactCompiler: true, + output: "standalone", +}; + +export default nextConfig; |
