Files
cypress/npm/webpack-dev-server/__snapshots__/makeWebpackConfig.spec.ts.js

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"
]
}