12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|