1234567891011121314 |
- const webpackPreprocessor = require('@cypress/webpack-preprocessor');
- module.exports = (on, config) => {
- const options = {
- webpackOptions: {
- output: {
- chunkFormat: 'commonjs',
- },
- target: 'node',
- },
- };
- on('file:preprocessor', webpackPreprocessor(options));
- };
|