diff --git a/next.config.js b/next.config.js index 0c3a008..f66c04b 100644 --- a/next.config.js +++ b/next.config.js @@ -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: [] }]], },