9 lines
156 B
JavaScript
9 lines
156 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
typescript: {
|
||
|
tsconfigPath: './tsconfig.next.json',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default nextConfig;
|