Merge branch 'musa/www' of https://github.com/katanemo/archgw into musa/www

This commit is contained in:
Musa 2025-11-25 11:07:01 -08:00
commit 185f9444b1
6 changed files with 41 additions and 2 deletions

17
apps/docs/next.config.ts Normal file
View file

@ -0,0 +1,17 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
transpilePackages: [
"@katanemo/ui",
"@katanemo/shared-styles",
"@katanemo/tailwind-config",
"@katanemo/tsconfig",
],
experimental: {
// Ensure workspace packages are handled correctly
externalDir: true,
},
};
export default nextConfig;