|
14 | 14 | * @type {import('next').NextConfig} |
15 | 15 | */ |
16 | 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"], |
27 | | - // defaultLocale: "en", |
28 | | - // }, |
29 | | - images: { |
30 | | - domains: [ |
31 | | - 'avatars.githubusercontent.com', |
32 | | - 'cote.azureedge.net', |
33 | | - 'res.cloudinary.com', |
34 | | - 'tailwindui.com', |
35 | | - ], |
36 | | - }, |
37 | | - experimental: { |
38 | | - outputFileTracingIgnores: ['**/@swc+core*'], |
39 | | - }, |
40 | | - // rewrites: async () => [ |
41 | | - // { |
42 | | - // source: '/rss.xml', |
43 | | - // destination: '/rss', |
44 | | - // }, |
45 | | - // { |
46 | | - // source: '/rss.json', |
47 | | - // destination: '/rss?type=json', |
48 | | - // }, |
49 | | - // { |
50 | | - // source: '/rss2.xml', |
51 | | - // destination: '/rss?type=rss', |
52 | | - // }, |
53 | | - // ], |
54 | | -} |
| 17 | + /* config options here */ |
| 18 | + eslint: { |
| 19 | + ignoreDuringBuilds: true, |
| 20 | + }, |
| 21 | + typescript: { |
| 22 | + ignoreBuildErrors: true, |
| 23 | + }, |
| 24 | + output: "standalone", |
| 25 | + // reactStrictMode: true, |
| 26 | + // i18n: { |
| 27 | + // locales: ["en"], |
| 28 | + // defaultLocale: "en", |
| 29 | + // }, |
| 30 | + images: { |
| 31 | + domains: [ |
| 32 | + "avatars.githubusercontent.com", |
| 33 | + "cote.azureedge.net", |
| 34 | + "res.cloudinary.com", |
| 35 | + "tailwindui.com", |
| 36 | + ], |
| 37 | + }, |
| 38 | + experimental: { |
| 39 | + outputFileTracingIgnores: ["**/@swc+core*"], |
| 40 | + }, |
| 41 | + // rewrites: async () => [ |
| 42 | + // { |
| 43 | + // source: '/rss.xml', |
| 44 | + // destination: '/rss', |
| 45 | + // }, |
| 46 | + // { |
| 47 | + // source: '/rss.json', |
| 48 | + // destination: '/rss?type=json', |
| 49 | + // }, |
| 50 | + // { |
| 51 | + // source: '/rss2.xml', |
| 52 | + // destination: '/rss?type=rss', |
| 53 | + // }, |
| 54 | + // ], |
| 55 | +}; |
55 | 56 |
|
56 | | -export default nextConfig |
| 57 | +export default nextConfig; |
0 commit comments