10 lines
250 B
JavaScript
Executable File
10 lines
250 B
JavaScript
Executable File
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
transpilePackages: ["@wallmuse/api-client", "@wallmuse/shared", "@wallmuse/ui-tokens"],
|
|
experimental: {
|
|
optimizePackageImports: ["lucide-react"]
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|