Skip to content

Commit

Permalink
exclude .next folder from the deploy #2
Browse files Browse the repository at this point in the history
  • Loading branch information
ggascoigne committed Aug 11, 2024
1 parent dbf13bb commit da3e8b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/acnw/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module.exports = withBundleAnalyzer(
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
experimental: {
outputFileTracingExcludes: {
'*': ['node_modules/@swc/**', '.next/**'],
'*': ['node_modules/@swc/**', './.next/**'],
},
},
headers,
Expand Down
2 changes: 1 addition & 1 deletion apps/acus/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module.exports = withBundleAnalyzer(
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
experimental: {
outputFileTracingExcludes: {
'*': ['node_modules/@swc/**', '.next/**'],
'*': ['node_modules/@swc/**', './.next/**'],
},
},
headers,
Expand Down

0 comments on commit da3e8b7

Please sign in to comment.