-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
151 lines (140 loc) · 5.33 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
141
142
143
144
145
146
147
148
149
150
151
/* eslint-disable import/order */
const { copySync, removeSync } = require('fs-extra');
const merge = require('lodash/merge');
const { join } = require('path');
const semver = require('semver');
const { ESBuildMinifyPlugin } = require('esbuild-loader');
const { info: logInfo } = require('next/dist/build/output/log');
const navigation = require('./constants/navigation');
const { VERSIONS } = require('./constants/versions');
const { version, betaVersion } = require('./package.json');
// To generate a sitemap, we need context about the supported versions and navigational data
const createSitemap = require('./scripts/create-sitemap');
// Determine if we are using esbuild for MDX transpiling
const enableEsbuild = !!process.env.USE_ESBUILD;
logInfo(
enableEsbuild
? 'Using esbuild for MDX files, USE_ESBUILD set to true'
: 'Using babel for MDX files, USE_ESBUILD not set'
);
// Prepare the latest version by copying the actual exact latest version
const vLatest = join('pages', 'versions', `v${version}/`);
const latest = join('pages', 'versions', 'latest/');
removeSync(latest);
copySync(vLatest, latest);
logInfo(`Copied latest Expo SDK version from v${version}`);
/** @type {import('next').NextConfig} */
module.exports = {
trailingSlash: true,
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'],
// Next 11 does not support ESLint v8, enable it when we upgrade to 12
eslint: { ignoreDuringBuilds: true },
// Keep using webpack 4, webpack 5 causes some issues. See: https://github.com/expo/expo/pull/12794
webpack5: false,
webpack: (config, options) => {
// Add preval support for `constants/*` only and move it to the `.next/preval` cache.
// It's to prevent over-usage and separate the cache to allow manually invalidation.
// See: https://github.com/kentcdodds/babel-plugin-preval/issues/19
config.module.rules.push({
test: /.jsx?$/,
include: [join(__dirname, 'constants')],
use: merge({}, options.defaultLoaders.babel, {
options: {
// Keep this path in sync with package.json and other scripts that clear the cache
cacheDirectory: '.next/preval',
plugins: ['preval'],
},
}),
});
// Add support for MDX with our custom loader and esbuild
config.module.rules.push({
test: /.mdx?$/, // load both .md and .mdx files
use: [
!enableEsbuild
? options.defaultLoaders.babel
: {
loader: 'esbuild-loader',
options: {
loader: 'tsx',
target: 'es2017',
},
},
{
loader: '@mdx-js/loader',
options: {
remarkPlugins: [
[require('remark-frontmatter'), ['yaml']],
require('./mdx-plugins/remark-export-yaml'),
require('./mdx-plugins/remark-export-headings'),
require('./mdx-plugins/remark-link-rewrite'),
],
rehypePlugins: [require('rehype-slug')],
},
},
],
});
// Fix inline or browser MDX usage: https://mdxjs.com/getting-started/webpack#running-mdx-in-the-browser
// Webpack 4
config.node = { fs: 'empty' };
// Webpack 5
// config.resolve.fallback = { fs: false, path: require.resolve('path-browserify') };
// Add the esbuild plugin only when using esbuild
if (enableEsbuild) {
config.optimization.minimizer = [
new ESBuildMinifyPlugin({
target: 'es2017',
}),
];
}
return config;
},
// Create a map of all pages to export
async exportPathMap(defaultPathMap, { dev, outDir }) {
if (dev) {
return defaultPathMap;
}
const pathMap = Object.assign(
...Object.entries(defaultPathMap).map(([pathname, page]) => {
if (pathname.match(/\/v[1-9][^/]*$/)) {
// ends in "/v<version>"
pathname += '/index.html'; // TODO: find out why we need to do this
}
if (pathname.match(/unversioned/)) {
return {};
} else {
// hide versions greater than the package.json version number
const versionMatch = pathname.match(/\/v(\d\d\.\d\.\d)\//);
if (
versionMatch &&
versionMatch[1] &&
semver.gt(versionMatch[1], betaVersion || version)
) {
return {};
}
return { [pathname]: page };
}
})
);
const sitemapEntries = createSitemap({
pathMap,
domain: `https://docs.expo.dev`,
output: join(outDir, `sitemap.xml`),
// Some of the search engines only track the first N items from the sitemap,
// this makes sure our starting and general guides are first, and API index last (in order from new to old)
pathsPriority: [
...navigation.startingDirectories,
...navigation.generalDirectories,
...navigation.easDirectories,
...VERSIONS.map(version => `versions/${version}`),
],
// Some of our pages are "hidden" and should not be added to the sitemap
pathsHidden: navigation.previewDirectories,
});
logInfo(`📝 Generated sitemap with ${sitemapEntries.length} entries`);
return pathMap;
},
async headers() {
const cacheHeaders = [{ key: 'Cache-Control', value: 'public, max-age=31536000, immutable' }];
return [{ source: '/_next/static/:static*', headers: cacheHeaders }];
},
};