tpmjs/apps/web/next.config.ts
2025-11-28 20:36:47 +10:00

8 lines
225 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
transpilePackages: ['@tpmjs/ui', '@tpmjs/utils', '@tpmjs/db', '@tpmjs/types', '@tpmjs/env'],
reactStrictMode: true,
};
export default nextConfig;