mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
26 lines
512 B
TypeScript
26 lines
512 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,
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "cdn.sanity.io",
|
|
port: "",
|
|
pathname: "/**",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|