@revoloo/cypress6
Version:
Cypress.io end to end testing tool
40 lines (32 loc) • 1.26 kB
JavaScript
// @ts-check
const debug = require('debug')('@cypress/react')
const loadConfig = require('next/dist/next-server/server/config').default
const getNextJsBaseWebpackConfig = require('next/dist/build/webpack-config').default
async function getNextWebpackConfig (config) {
const nextConfig = await loadConfig('development', config.projectRoot)
const nextWebpackConfig = await getNextJsBaseWebpackConfig(
config.projectRoot,
{
buildId: `@cypress/react-${Math.random().toString()}`,
config: nextConfig,
dev: true,
isServer: false,
pagesDir: config.projectRoot,
entrypoints: {},
rewrites: [],
},
)
debug('resolved next.js webpack config %o', nextWebpackConfig)
return nextWebpackConfig
}
let webpackConfigCache = null
/** Resolving next.js webpack and all config with plugin takes long, so cache the webpack configuration */
module.exports = async function findNextWebpackConfig (config) {
// ⛔️ ⛔️ Comment this `if` for debugging
if (webpackConfigCache !== null) {
return webpackConfigCache
}
webpackConfigCache = await getNextWebpackConfig(config)
debug('created and cached webpack preprocessor based on next.config.js', webpackConfigCache)
return webpackConfigCache
}