mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-29 19:41:16 -05:00
6e803597a3
* fix: update scaffold template to use correct path * Remove support for dynamic import on devServer * Update scaffold template * Update config files * Update with feedback * Rename cypressConfig to cypressDevServerConfig * Update devserver link * Update comment
15 lines
262 B
JavaScript
15 lines
262 B
JavaScript
const { devServer } = require('@cypress/react/plugins/next')
|
|
|
|
module.exports = {
|
|
'video': false,
|
|
'viewportWidth': 500,
|
|
'viewportHeight': 800,
|
|
'experimentalFetchPolyfill': true,
|
|
'env': {
|
|
'coverage': true,
|
|
},
|
|
'component': {
|
|
devServer,
|
|
},
|
|
}
|