Files
pangolin/next.config.mjs
T

10 lines
172 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
ignoreDuringBuilds: true
},
output: "standalone"
};
export default nextConfig;