9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true,
|
|
transpilePackages: ['../shared'],
|
|
}
|
|
|
|
export default nextConfig
|