()
| 25 | const cssnano = require('cssnano') |
| 26 | |
| 27 | const developmentConfig = () => |
| 28 | group([ |
| 29 | sourceMaps(), |
| 30 | devServer({ |
| 31 | proxy: { |
| 32 | '/api/*': { target: 'http://localhost:4000' } |
| 33 | } |
| 34 | }), |
| 35 | performance({ |
| 36 | // Increase performance budget thresholds for development mode |
| 37 | maxAssetSize: 1500000, |
| 38 | maxEntrypointSize: 1500000 |
| 39 | }), |
| 40 | css.modules() |
| 41 | ]) |
| 42 | |
| 43 | const productionConfig = () => |
| 44 | group([ |
no test coverage detected
searching dependent graphs…