index.js 301 B

1234567891011121314
  1. const webpackPreprocessor = require('@cypress/webpack-preprocessor');
  2. module.exports = (on, config) => {
  3. const options = {
  4. webpackOptions: {
  5. output: {
  6. chunkFormat: 'commonjs',
  7. },
  8. target: 'node',
  9. },
  10. };
  11. on('file:preprocessor', webpackPreprocessor(options));
  12. };