diff --git a/front/next.config.mjs b/front/next.config.mjs index 4678774..e95be5e 100644 --- a/front/next.config.mjs +++ b/front/next.config.mjs @@ -1,4 +1,6 @@ -/** @type {import('next').NextConfig} */ -const nextConfig = {}; +/** @type {import("next").NextConfig} */ +const nextConfig = { + distDir: "build", +}; export default nextConfig; diff --git a/front/tsconfig.json b/front/tsconfig.json index 6c825a6..eb918b0 100644 --- a/front/tsconfig.json +++ b/front/tsconfig.json @@ -31,7 +31,8 @@ "next-env.d.ts", "**/*.ts", "**/*.tsx", - ".next/types/**/*.ts" + ".next/types/**/*.ts", + "build/types/**/*.ts" ], "exclude": [ "node_modules"