13 lines
252 B
JavaScript
13 lines
252 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// basePath: "", // Remove or customize for your deployment
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|