8 lines
153 B
JavaScript
8 lines
153 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
transpilePackages: ['@repo/ui'],
|
|
};
|
|
|
|
export default nextConfig;
|