10 lines
211 B
TypeScript
10 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;
|