We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d5812c commit 32214deCopy full SHA for 32214de
next.config.ts
@@ -3,11 +3,16 @@ import type { NextConfig } from 'next';
3
const nextConfig: NextConfig = {
4
/* config options here */
5
experimental: {
6
- turbo: false,
+ turbo: {
7
+ rules: {}
8
+ },
9
},
10
typescript: {
11
ignoreBuildErrors: true, // 忽略 TypeScript 检查
12
13
+ eslint: {
14
+ ignoreDuringBuilds: true, // 忽略 ESLint 检查
15
16
webpack: (config) => {
17
// 禁用缓存序列化警告
18
config.infrastructureLogging = {
0 commit comments