9 lines
202 B
JavaScript
9 lines
202 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
transpilePackages: ['@the-order/ui', '@the-order/schemas', '@the-order/auth'],
|
|
};
|
|
|
|
module.exports = nextConfig;
|
|
|