-
Notifications
You must be signed in to change notification settings - Fork 6
/
next.config.js
88 lines (86 loc) · 2.26 KB
/
next.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const path = require('path')
const withMDX = require('@next/mdx')({
extension: /\.mdx?$/,
options: {
// If you use remark-gfm, you'll need to use next.config.mjs
// as the package is ESM only
// https://github.com/remarkjs/remark-gfm#install
remarkPlugins: [],
rehypePlugins: [],
// If you use `MDXProvider`, uncomment the following line.
// providerImportSource: "@mdx-js/react",
},
})
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],
reactStrictMode: true,
i18n: {
// These are all the locales you want to support in
// your application
locales: ['en', 'zh'],
// This is the default locale you want to be used when visiting
// a non-locale prefixed path e.g. `/hello`
defaultLocale: 'en',
localeDetection: false,
// This is a list of locale domains and the default locale they
// should handle (these are only required when setting up domain routing)
// Note: subdomains must be included in the domain value to be matched e.g. "fr.example.com".
// domains: [
// {
// domain: 'example.com',
// defaultLocale: 'en-US',
// },
// {
// domain: 'example.nl',
// defaultLocale: 'nl-NL',
// },
// {
// domain: 'example.fr',
// defaultLocale: 'fr',
// // an optional http field can also be used to test
// // locale domains locally with http instead of https
// http: true,
// },
// ],
},
// webpack: (config, { isServer }) => {
// // Fixes npm packages that depend on `fs` module
// if (!isServer) {
// config.node = {
// fs: 'empty'
// }
// }
// return config
// },
// webpack5: false,
webpack: (config, { isServer }) => {
if (!isServer) {
config.resolve.fallback.fs = false
config.resolve.alias['@'] = path.join(__dirname, '.')
config.module.rules.push({
test: /\.(png|jpe?g|gif)$/i,
use: [
{
loader: 'file-loader',
options: {
publicPath: '/_next/static/images/',
outputPath: 'static/images/',
name: '[name].[ext]',
},
},
],
})
}
return config
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
},
],
},
}
module.exports = withMDX(nextConfig)