Introces the capability to set bucket quota on bucket creation and adds the API to set the bucket on it's own
11 lines
324 B
JavaScript
11 lines
324 B
JavaScript
const rewireReactHotLoader = require('react-app-rewire-hot-loader');
|
|
|
|
/* config-overrides.js */
|
|
module.exports = function override(config, env) {
|
|
if (env === 'development') {
|
|
config.resolve.alias['react-dom'] = '@hot-loader/react-dom';
|
|
}
|
|
config = rewireReactHotLoader(config, env);
|
|
return config;
|
|
};
|