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