19 lines
403 B
JavaScript
19 lines
403 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
import path from "path";
|
|
import { fileURLToPath } from "url";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
const nextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
outputFileTracingRoot: path.join(__dirname, "../"),
|
|
};
|
|
|
|
export default nextConfig;
|