mirror of
https://github.com/cypress-io/cypress.git
synced 2026-03-15 05:40:29 -05:00
61 lines
1.9 KiB
JavaScript
61 lines
1.9 KiB
JavaScript
// @ts-check
|
|
/// <reference types="next" />
|
|
const debug = require('debug')('@cypress/react')
|
|
const getNextJsBaseWebpackConfig = require('next/dist/build/webpack-config').default
|
|
const { findPagesDir } = require('../../dist/next/findPagesDir')
|
|
const { getRunWebpackSpan } = require('../../dist/next/getRunWebpackSpan')
|
|
const { checkSWC } = require('../../dist/next/checkSWC')
|
|
|
|
async function getNextWebpackConfig (config) {
|
|
let loadConfig
|
|
|
|
try {
|
|
loadConfig = require('next/dist/next-server/server/config').default
|
|
} catch (e) {
|
|
if (e.code === 'MODULE_NOT_FOUND') {
|
|
// Starting from 11.0.2-canary.23, the server config file
|
|
// is not in the next-server folder anymore.
|
|
// @ts-ignore
|
|
loadConfig = require('next/dist/server/config').default
|
|
} else {
|
|
throw e
|
|
}
|
|
}
|
|
const nextConfig = await loadConfig('development', config.projectRoot)
|
|
const runWebpackSpan = await getRunWebpackSpan()
|
|
const nextWebpackConfig = await getNextJsBaseWebpackConfig(
|
|
config.projectRoot,
|
|
{
|
|
buildId: `@cypress/react-${Math.random().toString()}`,
|
|
config: nextConfig,
|
|
dev: true,
|
|
isServer: false,
|
|
pagesDir: findPagesDir(config.projectRoot),
|
|
entrypoints: {},
|
|
rewrites: { fallback: [], afterFiles: [], beforeFiles: [] },
|
|
...runWebpackSpan,
|
|
},
|
|
)
|
|
|
|
debug('resolved next.js webpack config %o', nextWebpackConfig)
|
|
|
|
checkSWC(nextWebpackConfig, config)
|
|
|
|
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
|
|
}
|