Files
wursor/packages/app/next.config.ts
T
2026-04-23 09:39:01 +01:00

11 lines
259 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
transpilePackages: ['@originmain/ui', '@fluentui/react-components'],
experimental: {
optimizePackageImports: ['@fluentui/react-components'],
},
};
export default nextConfig;