18 lines
342 B
JavaScript
18 lines
342 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
transpilePackages: [
|
|
"@repo/auth",
|
|
"@repo/blog",
|
|
"@repo/core-api",
|
|
"@repo/core-cms",
|
|
"@repo/core-shared",
|
|
"@repo/core-trpc",
|
|
"@repo/core-ui",
|
|
"@repo/marketing-pages",
|
|
"@repo/media",
|
|
"@repo/navigation",
|
|
],
|
|
};
|
|
|
|
export default nextConfig;
|