mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-25 08:29:06 -06:00
51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
exports['makeWebpackConfig ignores userland webpack `output.publicPath` and `devServer.overlay` with webpack-dev-server v4 1'] = {
|
|
"output": {
|
|
"publicPath": "/test-public-path/",
|
|
"filename": "[name].js"
|
|
},
|
|
"devServer": {
|
|
"magicHtml": true,
|
|
"client": {
|
|
"progress": false,
|
|
"overlay": false
|
|
}
|
|
},
|
|
"optimization": {
|
|
"emitOnErrors": true,
|
|
"sideEffects": false,
|
|
"splitChunks": {
|
|
"chunks": "all"
|
|
}
|
|
},
|
|
"devtool": "inline-source-map",
|
|
"mode": "development",
|
|
"plugins": [
|
|
"HtmlWebpackPlugin",
|
|
"CypressCTWebpackPlugin"
|
|
]
|
|
}
|
|
|
|
exports['makeWebpackConfig ignores userland webpack `output.publicPath` and `devServer.overlay` with webpack-dev-server v3 1'] = {
|
|
"output": {
|
|
"publicPath": "/test-public-path/",
|
|
"filename": "[name].js"
|
|
},
|
|
"devServer": {
|
|
"progress": true,
|
|
"overlay": false
|
|
},
|
|
"optimization": {
|
|
"noEmitOnErrors": false,
|
|
"sideEffects": false,
|
|
"splitChunks": {
|
|
"chunks": "all"
|
|
}
|
|
},
|
|
"devtool": "inline-source-map",
|
|
"mode": "development",
|
|
"plugins": [
|
|
"HtmlWebpackPlugin",
|
|
"CypressCTWebpackPlugin"
|
|
]
|
|
}
|