Files
jisuxiang/next.config.js
2025-04-10 18:06:45 +08:00

12 lines
239 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
eslint: {
// 在构建过程中忽略ESLint错误
ignoreDuringBuilds: true,
},
/* config options here */
};
module.exports = nextConfig;