learnsteam-quiz/next.config.js
2023-11-10 18:34:35 +09:00

23 lines
388 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
swcMinify: true,
transpilePackages: ["antd"],
images: {
domains: [],
},
output: "standalone",
eslint: {
ignoreDuringBuilds: true,
},
rewrites: async () => {
return [
{
source: "/healthcheck",
destination: "/api/healthcheck",
},
]
},
}
module.exports = nextConfig