mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 00:36:31 +02:00
13 lines
202 B
TypeScript
13 lines
202 B
TypeScript
|
|
import type { NextConfig } from "next";
|
||
|
|
|
||
|
|
const nextConfig: NextConfig = {
|
||
|
|
typescript: {
|
||
|
|
ignoreBuildErrors: true,
|
||
|
|
},
|
||
|
|
eslint: {
|
||
|
|
ignoreDuringBuilds: true,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|