Replace local UI component and utility imports with @multica/ui subpath imports. Remove old components/ui/ directory, lib/utils.ts, and globals.css. Configure postcss, next.config, and tsconfig for monorepo UI package consumption. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
143 B
TypeScript
7 lines
143 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
transpilePackages: ["@multica/ui"],
|
|
};
|
|
|
|
export default nextConfig;
|