9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
import type { NextConfig } from 'next';
|
|
import path from 'node:path';
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true,
|
|
outputFileTracingRoot: path.join(process.cwd()),
|
|
};
|
|
|
|
export default nextConfig;
|