Files
parcer/config-overrides.js

16 lines
332 B
JavaScript
Raw Normal View History

2024-10-24 19:24:02 +05:30
/* config-overrides.js */
module.exports = function override(config, env) {
//do stuff with the webpack config...
return {
...config,
resolve: {
...config.resolve,
fallback: {
...config.resolve.fallback,
path: false,
},
},
}
}