mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
17 lines
345 B
TypeScript
17 lines
345 B
TypeScript
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;
|
|
|