File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,6 @@ module.exports = function(api) {
77
77
async : false
78
78
}
79
79
] ,
80
- ]
81
80
] . filter ( Boolean )
82
81
}
83
82
}
Original file line number Diff line number Diff line change @@ -2,4 +2,14 @@ process.env.NODE_ENV = process.env.NODE_ENV || 'development'
2
2
3
3
const environment = require ( './environment' )
4
4
5
- module . exports = environment . toWebpackConfig ( )
5
+ // console.log('NODE_ENV', process.env.NODE_ENV)
6
+
7
+ const config = environment . toWebpackConfig ( )
8
+ // for some reason config.mode was set to production
9
+ // but we don't want that - all those webpack configs screw everything
10
+ config . set ( 'mode' , 'development' )
11
+
12
+ // console.log('config is')
13
+ // console.log(config)
14
+
15
+ module . exports = config
Original file line number Diff line number Diff line change 16
16
* @type {Cypress.PluginConfig }
17
17
*/
18
18
19
- const webpackPreprocessor = require ( '@cypress/webpack-preprocessor' )
19
+ // const webpackPreprocessor = require('@cypress/webpack-preprocessor')
20
20
21
21
module . exports = ( on , config ) => {
22
22
You can’t perform that action at this time.
0 commit comments