mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
1e5d0908d0
Closes: #6244 This will block the following keys: ``` NODE_.+ __.+ ``` There doesn't seem to be a way to simulate a failed build or else I'd add tests for it.
35 lines
995 B
JavaScript
35 lines
995 B
JavaScript
const withCSS = require('@zeit/next-css')
|
|
const withSass = require('@zeit/next-sass')
|
|
const path = require('path')
|
|
module.exports = withCSS(withSass({
|
|
env: {
|
|
...(process.env.ENABLE_ENV_FAIL_UNDERSCORE ? {
|
|
'__NEXT_MY_VAR': 'test'
|
|
} : {}),
|
|
...(process.env.ENABLE_ENV_FAIL_NODE ? {
|
|
'NODE_ENV': 'abc'
|
|
} : {})
|
|
},
|
|
onDemandEntries: {
|
|
// Make sure entries are not getting disposed.
|
|
maxInactiveAge: 1000 * 60 * 60
|
|
},
|
|
webpack (config) {
|
|
// When next-css is `npm link`ed we have to solve loaders from the project root
|
|
const nextLocation = path.join(require.resolve('next/package.json'), '../')
|
|
const nextCssNodeModulesLocation = path.join(
|
|
require.resolve('@zeit/next-css'),
|
|
'../../../node_modules'
|
|
)
|
|
|
|
if (nextCssNodeModulesLocation.indexOf(nextLocation) === -1) {
|
|
config.resolveLoader.modules.push(nextCssNodeModulesLocation)
|
|
}
|
|
|
|
return config
|
|
},
|
|
async generateBuildId () {
|
|
return 'custom-buildid'
|
|
}
|
|
}))
|