12 lines
266 B
JavaScript
12 lines
266 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
// this will allow nextjs to resolve files (js, ts, css)
|
|
// outside packages/app directory.
|
|
externalDir: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|