plano/apps/www/next.config.ts

51 lines
1.1 KiB
TypeScript
Raw Normal View History

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-11-23 13:27:17 -08:00
transpilePackages: [
"@katanemo/ui",
"@katanemo/shared-styles",
"@katanemo/tailwind-config",
"@katanemo/tsconfig",
],
2025-11-23 13:37:15 -08:00
experimental: {
// Ensure workspace packages are handled correctly
externalDir: true,
},
2025-12-08 14:30:46 -08:00
// Webpack config for production builds
webpack: (config, { isServer }) => {
// Ensure proper resolution of dependencies in monorepo
config.resolve.modules = [
...(config.resolve.modules || []),
"node_modules",
"../../node_modules",
];
if (!isServer) {
config.resolve.fallback = {
...config.resolve.fallback,
fs: false,
};
}
return config;
},
// Turbopack config for dev mode (Next.js 16 default)
turbopack: {
resolveAlias: {
// Turbopack should handle monorepo resolution automatically
// but we can add specific aliases if needed
},
},
2025-11-26 13:51:06 -08:00
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.sanity.io",
port: "",
pathname: "/**",
},
],
},
};
export default nextConfig;