We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99f1255 commit 3aff08eCopy full SHA for 3aff08e
apps/next-blog/next.config.mjs
@@ -15,6 +15,12 @@
15
*/
16
const nextConfig = {
17
/* config options here */
18
+ eslint: {
19
+ ignoreDuringBuilds: true,
20
+ },
21
+ typescript: {
22
+ ignoreBuildErrors: true,
23
24
// reactStrictMode: true,
25
// i18n: {
26
// locales: ["en"],
@@ -29,10 +35,8 @@ const nextConfig = {
29
35
],
30
36
},
31
37
experimental: {
32
- outputFileTracingIgnores: [
33
- '**/@swc+core*',
34
- ]
- }
38
+ outputFileTracingIgnores: ['**/@swc+core*'],
39
40
// rewrites: async () => [
41
// {
42
// source: '/rss.xml',
@@ -47,6 +51,6 @@ const nextConfig = {
47
51
// destination: '/rss?type=rss',
48
52
// },
49
53
// ],
50
-};
54
+}
55
-export default nextConfig;
56
+export default nextConfig
0 commit comments