Skip to content

Commit

Permalink
feat(front): Add build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola authored and EdenComp committed Oct 23, 2024
1 parent 5cb0cff commit 33ef083
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions front/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
/** @type {import("next").NextConfig} */
const nextConfig = {
distDir: "build",
};

export default nextConfig;
3 changes: 2 additions & 1 deletion front/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
".next/types/**/*.ts",
"build/types/**/*.ts"
],
"exclude": [
"node_modules"
Expand Down

0 comments on commit 33ef083

Please sign in to comment.