Skip to content

Commit

Permalink
fix: not obvious syntax mistake breaking next.js (vercel/next.js#62331)
Browse files Browse the repository at this point in the history
  • Loading branch information
sneko committed Feb 21, 2024
1 parent e814574 commit 9a3e53f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ const moduleExports = async () => {
transpilePackages: commonPackages,
experimental: {
outputFileTracingIncludes: {
'*': ['src/prisma/migrations/**/*', 'src/prisma/schema.prisma', 'start-and-wait-to-init.sh'], // Migration and start files are required when doing automatic migration before starting the application
'*': ['./src/prisma/migrations/**/*', './src/prisma/schema.prisma', './start-and-wait-to-init.sh'], // Migration and start files are required when doing automatic migration before starting the application
},
outputFileTracingExcludes: {
'*': ['data/**/*', 'scripts/**/*'], // Note folders starting with a dot are already ignored after verification
'*': ['./data/**/*', './scripts/**/*'], // Note folders starting with a dot are already ignored after verification
},
swcPlugins: [['next-superjson-plugin', { excluded: [] }]],
},
Expand Down

0 comments on commit 9a3e53f

Please sign in to comment.