aboutsummaryrefslogtreecommitdiffstats
path: root/next.config.js
diff options
context:
space:
mode:
authorbndw <ben@bdw.to>2023-04-26 17:49:25 -0700
committerbndw <ben@bdw.to>2023-04-26 17:49:25 -0700
commit8686078ae801fdc15df5a40ee158a43373d37c1c (patch)
treef8807fa764e917c6c4cdd30dcff31aa4bb060da8 /next.config.js
Initial commit
Diffstat (limited to 'next.config.js')
-rw-r--r--next.config.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/next.config.js b/next.config.js
new file mode 100644
index 0000000..62e6502
--- /dev/null
+++ b/next.config.js
@@ -0,0 +1,9 @@
1/** @type {import('next').NextConfig} */
2const nextConfig = {
3 experimental: {
4 appDir: true,
5 outputStandalone: true,
6 },
7};
8
9module.exports = nextConfig;