Files
myeasycms-v2/apps/dev-tool/next.config.ts
2026-03-11 14:47:47 +08:00

18 lines
317 B
TypeScript

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