From 94217e80c84fce451fdd2cc0c4b0cbb4b510ac36 Mon Sep 17 00:00:00 2001 From: Dex Date: Sun, 24 Mar 2024 14:05:19 -0400 Subject: [PATCH] config and Dockerfile update --- next.config.js | 10 ++++++++++ next.config.mjs | 4 ---- 2 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 next.config.js delete mode 100644 next.config.mjs diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..d35542b --- /dev/null +++ b/next.config.js @@ -0,0 +1,10 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + experimental: { + appDir: true, + serverActions: true + }, + output: 'standalone' +} + +module.exports = nextConfig diff --git a/next.config.mjs b/next.config.mjs deleted file mode 100644 index 4678774..0000000 --- a/next.config.mjs +++ /dev/null @@ -1,4 +0,0 @@ -/** @type {import('next').NextConfig} */ -const nextConfig = {}; - -export default nextConfig;