diff --git a/next.config.mjs b/next.config.mjs new file mode 100644 index 0000000..119e91d --- /dev/null +++ b/next.config.mjs @@ -0,0 +1,5 @@ +const nextConfig = { + output: 'standalone', +}; + +export default nextConfig; diff --git a/next.config.ts b/next.config.ts deleted file mode 100644 index 225e495..0000000 --- a/next.config.ts +++ /dev/null @@ -1,7 +0,0 @@ -import type { NextConfig } from "next"; - -const nextConfig: NextConfig = { - output: 'standalone', -}; - -export default nextConfig;