Jonathan Druart
4f1f8bb4ea
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
13 lines
292 B
JavaScript
13 lines
292 B
JavaScript
const { startDevServer } = require('@cypress/webpack-dev-server')
|
|
const webpackConfig = require('@vue/cli-service/webpack.config.js')
|
|
|
|
module.exports = (on, config) => {
|
|
on('dev-server:start', options =>
|
|
startDevServer({
|
|
options,
|
|
webpackConfig
|
|
})
|
|
)
|
|
|
|
return config
|
|
}
|