-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathconfig.ts
285 lines (245 loc) · 10.2 KB
/
config.ts
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
import type { NetlifyConfig } from '@netlify/build/types'
import destr from 'destr'
import { readJSON, writeJSON } from 'fs-extra'
import type { Header } from 'next/dist/lib/load-custom-routes'
import type { NextConfigComplete } from 'next/dist/server/config-shared'
import { join, dirname, relative } from 'pathe'
import slash from 'slash'
import { HANDLER_FUNCTION_NAME, IMAGE_FUNCTION_NAME, ODB_FUNCTION_NAME } from '../constants'
import type { APILambda, SSRLambda } from './functions'
import type { RoutesManifest } from './types'
import { escapeStringRegexp } from './utils'
const ROUTES_MANIFEST_FILE = 'routes-manifest.json'
type NetlifyHeaders = NetlifyConfig['headers']
export interface RequiredServerFiles {
version?: number
relativeAppDir?: string
config?: NextConfigComplete
appDir?: string
files?: string[]
ignore?: string[]
}
export type NextConfig = Pick<RequiredServerFiles, 'appDir' | 'ignore'> &
NextConfigComplete & {
routesManifest?: RoutesManifest
}
const defaultFailBuild = (message: string, { error }): never => {
throw new Error(`${message}\n${error && error.stack}`)
}
export const getNextConfig = async function getNextConfig({
publish,
failBuild = defaultFailBuild,
}): Promise<NextConfig> {
try {
const { config, appDir, ignore }: RequiredServerFiles = await readJSON(join(publish, 'required-server-files.json'))
if (!config) {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
return failBuild('Error loading your Next config')
}
const routesManifest: RoutesManifest = await readJSON(join(publish, ROUTES_MANIFEST_FILE))
// If you need access to other manifest files, you can add them here as well
return { ...config, appDir, ignore, routesManifest }
} catch (error: unknown) {
return failBuild('Error loading your Next config', { error })
}
}
/**
* Returns all of the NextJS configuration stored within 'required-server-files.json'
* To update the configuration within this file, use the 'updateRequiredServerFiles' method.
*/
export const getRequiredServerFiles = async (publish: string): Promise<RequiredServerFiles> => {
const configFile = join(publish, 'required-server-files.json')
return await readJSON(configFile)
}
/**
* Writes a modified configuration object to 'required-server-files.json'.
* To get the full configuration, use the 'getRequiredServerFiles' method.
*/
export const updateRequiredServerFiles = async (publish: string, modifiedConfig: RequiredServerFiles) => {
const configFile = join(publish, 'required-server-files.json')
await writeJSON(configFile, modifiedConfig)
}
export const resolveModuleRoot = (moduleName, paths = [process.cwd()]) => {
try {
return dirname(relative(process.cwd(), require.resolve(`${moduleName}/package.json`, { paths })))
} catch {
return null
}
}
const DEFAULT_EXCLUDED_MODULES = ['sharp', 'electron']
export const hasManuallyAddedModule = ({
netlifyConfig,
moduleName,
}: {
netlifyConfig: NetlifyConfig
moduleName: string
}) =>
/* eslint-disable camelcase */
Object.values(netlifyConfig.functions).some(({ included_files = [] }) =>
included_files.some((inc) => inc.includes(`node_modules/${moduleName}`)),
)
/* eslint-enable camelcase */
/**
* Transforms `/api/shows/[id].js` into `/api/shows/*id*.js`,
* so that the file `[id].js` is matched correctly.
*/
const escapeGlob = (path: string) => path.replace(/\[/g, '*').replace(/]/g, '*')
export const configureHandlerFunctions = async ({
netlifyConfig,
publish,
ignore = [],
apiLambdas,
ssrLambdas,
splitApiRoutes,
}: {
netlifyConfig: NetlifyConfig
publish: string
ignore: Array<string>
apiLambdas: APILambda[]
ssrLambdas: SSRLambda[]
splitApiRoutes: boolean
}) => {
const config = await getRequiredServerFiles(publish)
const files = config.files || []
const cssFilesToInclude = files.filter((f) => f.startsWith(`${publish}/static/css/`))
if (!destr(process.env.DISABLE_IPX)) {
netlifyConfig.functions[IMAGE_FUNCTION_NAME] ||= {}
netlifyConfig.functions[IMAGE_FUNCTION_NAME].node_bundler = 'nft'
}
// If the user has manually added the module to included_files, then don't exclude it
const excludedModules = DEFAULT_EXCLUDED_MODULES.filter(
(moduleName) => !hasManuallyAddedModule({ netlifyConfig, moduleName }),
)
const configureFunction = (functionName: string) => {
netlifyConfig.functions[functionName] ||= { included_files: [], external_node_modules: [] }
netlifyConfig.functions[functionName].node_bundler = 'nft'
netlifyConfig.functions[functionName].included_files ||= []
netlifyConfig.functions[functionName].included_files.push(
'.env',
'.env.local',
'.env.production',
'.env.production.local',
'./public/locales/**',
'./next-i18next.config.js',
`${publish}/server/**`,
`${publish}/serverless/**`,
`${publish}/*.json`,
`${publish}/BUILD_ID`,
`${publish}/static/chunks/webpack-middleware*.js`,
`!${publish}/server/**/*.js.nft.json`,
`!${publish}/server/**/*.map`,
'!**/node_modules/@next/swc*/**/*',
...cssFilesToInclude,
...ignore.map((path) => `!${slash(path)}`),
)
const nextRoot = resolveModuleRoot('next')
if (nextRoot) {
netlifyConfig.functions[functionName].included_files.push(
`!${nextRoot}/dist/server/lib/squoosh/**/*.wasm`,
`!${nextRoot}/dist/next-server/server/lib/squoosh/**/*.wasm`,
`!${nextRoot}/dist/compiled/webpack/bundle4.js`,
`!${nextRoot}/dist/compiled/webpack/bundle5.js`,
)
// on Next 13.5+ there is no longer statically analyzable import to styled-jsx/style
// so lambda fails to bundle it. Next require hooks actually try to resolve it
// and fail if it is not bundled, so we forcefully add it to lambda.
const styledJsxRoot = resolveModuleRoot('styled-jsx', [join(process.cwd(), nextRoot)])
if (styledJsxRoot) {
const styledJsxStyleModulePath = join(styledJsxRoot, 'style.js')
netlifyConfig.functions[functionName].included_files.push(styledJsxStyleModulePath)
}
}
excludedModules.forEach((moduleName) => {
const moduleRoot = resolveModuleRoot(moduleName)
if (moduleRoot) {
netlifyConfig.functions[functionName].included_files.push(`!${moduleRoot}/**/*`)
}
})
}
const configureLambda = (lambda: APILambda) => {
const { functionName, includedFiles } = lambda
netlifyConfig.functions[functionName] ||= { included_files: [] }
netlifyConfig.functions[functionName].node_bundler = 'none'
netlifyConfig.functions[functionName].included_files ||= []
netlifyConfig.functions[functionName].included_files.push(...includedFiles.map(escapeGlob))
}
if (ssrLambdas.length === 0) {
configureFunction(HANDLER_FUNCTION_NAME)
configureFunction(ODB_FUNCTION_NAME)
} else {
ssrLambdas.forEach(configureLambda)
}
if (splitApiRoutes) {
apiLambdas.forEach(configureLambda)
} else {
configureFunction('_api_*')
}
}
interface BuildHeaderParams {
path: string
headers: Header['headers']
locale?: string
}
const buildHeader = (buildHeaderParams: BuildHeaderParams) => {
const { path, headers } = buildHeaderParams
return {
for: path,
values: headers.reduce((builtHeaders, { key, value }) => {
builtHeaders[key] = value
return builtHeaders
}, {}),
}
}
// Replace the pattern :path* at the end of a path with * since it's a named splat which the Netlify
// configuration does not support.
const sanitizePath = (path: string) => path.replace(/:[^*/]+\*$/, '*')
/**
* Persist Next.js custom headers to the Netlify configuration so the headers work with static files
* See {@link https://nextjs.org/docs/api-reference/next.config.js/headers} for more information on custom
* headers in Next.js
*
* @param nextConfig - The Next.js configuration
* @param netlifyHeaders - Existing headers that are already configured in the Netlify configuration
*/
export const generateCustomHeaders = (nextConfig: NextConfig, netlifyHeaders: NetlifyHeaders = []) => {
// The routesManifest is the contents of the routes-manifest.json file which will already contain the generated
// header paths which take locales and base path into account since this runs after the build. The routes-manifest.json
// file is located at demos/default/.next/routes-manifest.json once you've build the demo site.
const {
routesManifest: { headers: customHeaders = [] },
i18n,
} = nextConfig
// Skip `has` based custom headers as they have more complex dynamic conditional header logic
// that currently isn't supported by the Netlify configuration.
// Also, this type of dynamic header logic is most likely not for SSG pages.
for (const { source, headers, locale: localeEnabled } of customHeaders.filter((customHeader) => !customHeader.has)) {
// Explicitly checking false to make the check simpler.
// Locale specific paths are excluded only if localeEnabled is false. There is no true value for localeEnabled. It's either
// false or undefined, where undefined means it's true.
//
// Again, the routesManifest has already been generated taking locales into account, but the check is required
// so the paths can be properly set in the Netlify configuration.
const useLocale = i18n?.locales?.length > 0 && localeEnabled !== false
if (useLocale) {
const { locales } = i18n
// escape the locale strings to match the way Next writes the routes-manifest.json file
const joinedLocales = locales.map((locale: string) => escapeStringRegexp(locale)).join('|')
/**
* converts e.g.
* /:nextInternalLocale(en|fr)/some-path
* to a path for each locale
* /en/some-path and /fr/some-path as well as /some-path (default locale)
*/
const defaultLocalePath = sanitizePath(source).replace(`/:nextInternalLocale(${joinedLocales})`, '')
netlifyHeaders.push(buildHeader({ path: defaultLocalePath, headers }))
for (const locale of locales) {
const path = sanitizePath(source).replace(`:nextInternalLocale(${joinedLocales})`, locale)
netlifyHeaders.push(buildHeader({ path, headers }))
}
} else {
const path = sanitizePath(source)
netlifyHeaders.push(buildHeader({ path, headers }))
}
}
}