mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-29 11:32:15 -05:00
466be9f1f0
Co-authored-by: Zachary Williams <ZachJW34@gmail.com> Co-authored-by: Stokes Player <stokes@cypress.io>
47 lines
1020 B
JavaScript
47 lines
1020 B
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
|
|
}
|
|
},
|
|
"mode": "development",
|
|
"optimization": {
|
|
"emitOnErrors": true,
|
|
"splitChunks": {
|
|
"chunks": "all"
|
|
}
|
|
},
|
|
"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
|
|
},
|
|
"mode": "development",
|
|
"optimization": {
|
|
"noEmitOnErrors": false,
|
|
"splitChunks": {
|
|
"chunks": "all"
|
|
}
|
|
},
|
|
"plugins": [
|
|
"HtmlWebpackPlugin",
|
|
"CypressCTWebpackPlugin"
|
|
]
|
|
}
|