plano/apps/www/next.config.ts

17 lines
344 B
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,
},
};
export default nextConfig;