We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d89d89 commit 9a74058Copy full SHA for 9a74058
examples/github-dashboard/next-app/next.config.ts
@@ -1,8 +1,10 @@
1
/* examples/github-dashboard/next-app/next.config.ts */
2
3
+import { resolve } from 'node:path'
4
import type { NextConfig } from 'next'
5
6
const config: NextConfig = {
7
+ outputFileTracingRoot: resolve(process.cwd(), '../../..'),
8
transpilePackages: ['@github-dashboard/shared'],
9
webpack: (webpackConfig) => {
10
// Allow .js imports to resolve .tsx/.ts files (ESM convention used by shared package)
0 commit comments