Skip to content

Commit

Permalink
add builder folder to separate dev server from build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvisut committed Feb 5, 2025
1 parent 351e297 commit b074c4b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
.git
node_modules
.next
build
.nsm
**/.terraform
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ yarn-error.log*
*.tsbuildinfo

.next
build
next-env.d.ts
.history

Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
src/backend/db/zapatos
.next
build
.nsm
.terraform
*.css.d.ts
2 changes: 2 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ const nextConfig = {
// Types are checked separately
ignoreBuildErrors: true,
},

distDir: "build",
};

export default nextConfig;

0 comments on commit b074c4b

Please sign in to comment.