@@ -7,6 +7,7 @@ const makeDir = require('make-dir')
7
7
8
8
const isStaticExportProject = require ( './helpers/isStaticExportProject' )
9
9
const validateNextUsage = require ( './helpers/validateNextUsage' )
10
+ const requirePeerDependency = require ( './helpers/requirePeerDependency' )
10
11
11
12
const pWriteFile = util . promisify ( fs . writeFile )
12
13
@@ -15,7 +16,7 @@ const pWriteFile = util.promisify(fs.writeFile)
15
16
// - Between the build and postbuild steps, any functions are bundled
16
17
17
18
module . exports = {
18
- async onPreBuild ( { netlifyConfig, packageJson, utils } ) {
19
+ async onPreBuild ( { netlifyConfig, packageJson, utils, constants : { IS_LOCAL } } ) {
19
20
const { failBuild } = utils . build
20
21
21
22
validateNextUsage ( failBuild )
@@ -45,8 +46,8 @@ module.exports = {
45
46
if ( nextConfigPath !== undefined ) {
46
47
// We cannot load `next` at the top-level because we validate whether the
47
48
// site is using `next` inside `onPreBuild`.
48
- const { PHASE_PRODUCTION_BUILD } = require ( 'next/constants' )
49
- const { default : loadConfig } = require ( 'next/dist/next-server/server/config' )
49
+ const { PHASE_PRODUCTION_BUILD } = requirePeerDependency ( IS_LOCAL , 'next/constants' )
50
+ const { default : loadConfig } = requirePeerDependency ( IS_LOCAL , 'next/dist/next-server/server/config' )
50
51
51
52
// If the next config exists, fail build if target isnt in acceptableTargets
52
53
const acceptableTargets = [ 'serverless' , 'experimental-serverless-trace' ]
@@ -66,7 +67,7 @@ module.exports = {
66
67
console . log ( `** Adding next.config.js with target set to 'serverless' **` )
67
68
}
68
69
} ,
69
- async onBuild ( { constants : { PUBLISH_DIR , FUNCTIONS_SRC = DEFAULT_FUNCTIONS_SRC } } ) {
70
+ async onBuild ( { constants : { PUBLISH_DIR , FUNCTIONS_SRC = DEFAULT_FUNCTIONS_SRC , IS_LOCAL } } ) {
70
71
console . log ( `** Running Next on Netlify package **` )
71
72
72
73
await makeDir ( PUBLISH_DIR )
@@ -75,7 +76,11 @@ module.exports = {
75
76
// top-level because we validate whether the site is using `next`
76
77
// inside `onPreBuild`.
77
78
const nextOnNetlify = require ( 'next-on-netlify' )
78
- nextOnNetlify ( { functionsDir : FUNCTIONS_SRC , publishDir : PUBLISH_DIR } )
79
+ nextOnNetlify ( {
80
+ functionsDir : FUNCTIONS_SRC ,
81
+ publishDir : PUBLISH_DIR ,
82
+ requirePeerDependency : requirePeerDependency . bind ( undefined , IS_LOCAL ) ,
83
+ } )
79
84
} ,
80
85
}
81
86
0 commit comments