Files
myeasycms-v2/apps/dev-tool/next.config.ts
Giancarlo Buomprisco c185bcfa11 2.3.0 Dev Tools (#180)
* 2.3.0 - Added new Dev Tools app
2025-02-21 14:29:42 +08:00

17 lines
288 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
reactStrictMode: true,
transpilePackages: ['@kit/ui', '@kit/shared'],
experimental: {
reactCompiler: true,
},
logging: {
fetches: {
fullUrl: true,
},
},
};
export default nextConfig;