forked from nolimits4web/swiper-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
140 lines (132 loc) · 4.07 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
const path = require('path');
const querystring = require('querystring');
const { createLoader } = require('simple-functional-loader');
const frontMatter = require('front-matter');
const rehypePrism = require('@mapbox/rehype-prism');
const { withTableOfContents } = require('./withTableOfContents');
const minimatch = require('minimatch');
const pkg = require('./package.json');
const fallbackLayouts = {
'src/pages/**/*': ['@/layouts/withSidebar', 'WithSidebarLayout'],
};
const nextConfig = {
experimental: { esmExternals: true },
images: {
// https://stackoverflow.com/questions/68008498/nextjs-typeerror-unsupported-file-type-undefined-after-update-to-v-11
disableStaticImages: true,
},
pageExtensions: ['js', 'jsx', 'mdx'],
env: {
swiperReleaseVersion: pkg.releaseVersion,
swiperReleaseDate: pkg.releaseDate,
},
webpack(config, options) {
config.module.rules.push({
test: /\.svg$/,
use: [
{
loader: '@svgr/webpack',
options: { svgoConfig: { plugins: { removeViewBox: false } } },
},
{
loader: 'file-loader',
options: {
publicPath: '/_next',
name: 'static/media/[name].[hash].[ext]',
},
},
],
});
config.module.rules.push({
test: /\.mdx$/,
use: [
options.defaultLoaders.babel,
createLoader(function (source) {
if (source.includes('/*START_META*/')) {
const [meta] = source.match(
/\/\*START_META\*\/(.*?)\/\*END_META\*\//s
);
return 'export default ' + meta;
}
return (
source.replace(/export const/gs, 'const') +
`\nMDXContent.layoutProps = layoutProps\n`
);
}),
{
loader: '@mdx-js/loader',
options: {
remarkPlugins: [withTableOfContents],
rehypePlugins: [rehypePrism],
},
},
createLoader(function (source) {
let { meta: fields } = querystring.parse(
this.resourceQuery.substr(1)
);
let { attributes: meta, body } = frontMatter(source);
if (fields) {
for (let field in meta) {
if (!fields.split(',').includes(field)) {
delete meta[field];
}
}
}
let extra = [];
let resourcePath = path.relative(__dirname, this.resourcePath);
if (!/^\s*export\s+(var|let|const)\s+Layout\s+=/m.test(source)) {
for (let glob in fallbackLayouts) {
if (minimatch(resourcePath, glob)) {
extra.push(
`import { ${fallbackLayouts[glob][1]} as _Layout } from '${fallbackLayouts[glob][0]}'`,
'export const Layout = _Layout'
);
break;
}
}
}
if (
!/^\s*export\s+default\s+/m.test(
source.replace(/```(.*?)```/gs, '')
)
) {
for (let glob in fallbackLayouts) {
if (minimatch(resourcePath, glob)) {
extra.push(
`import { ${fallbackLayouts[glob][1]} as _Default } from '${fallbackLayouts[glob][0]}'`,
'export default _Default'
);
break;
}
}
}
return [
...(typeof fields === 'undefined' ? extra : []),
typeof fields === 'undefined' ? body : '',
typeof fields === 'undefined'
? `export const meta = ${JSON.stringify(meta)}`
: `export const meta = /*START_META*/${JSON.stringify(
meta || {}
)}/*END_META*/`,
].join('\n\n');
}),
],
});
return config;
},
async redirects() {
return [
{
source: '/api',
destination: '/swiper-api',
permanent: true,
},
{
source: '/types',
destination: '/types/index.html',
permanent: true,
},
];
},
};
module.exports = nextConfig;