8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
outputFileTracingRoot: __dirname,
|
|
};
|
|
|
|
export default nextConfig;
|