17 lines
294 B
TypeScript
17 lines
294 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
typescript: {
|
|
ignoreBuildErrors: true
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true
|
|
},
|
|
/* config options here */
|
|
api: {
|
|
bodyParser: false // 必须禁用默认解析器
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|