Files
wursor/packages/app/next.config.ts
T
2026-04-23 10:21:51 +01:00

18 lines
392 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
transpilePackages: ['@originmain/ui', '@fluentui/react-components'],
experimental: {
optimizePackageImports: ['@fluentui/react-components'],
},
async rewrites() {
return {
beforeFiles: [
{ source: '/', destination: '/marketing.html' },
],
};
},
};
export default nextConfig;