Fix: next.config.mjs + use client directive

This commit is contained in:
Neo
2026-02-19 09:50:21 +00:00
parent 7e8d072880
commit 37acbd2945
2 changed files with 2 additions and 0 deletions

7
next.config.mjs Normal file
View File

@@ -0,0 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
};
export default nextConfig;