Files
chatngay_chatboard_dev/config-overrides.js

14 lines
318 B
JavaScript
Raw Normal View History

2021-05-19 11:53:00 +07:00
/* config-overrides.js */
/* copied from https://github.com/facebook/create-react-app/issues/5118 */
const path = require('path');
module.exports = function override(config, env) {
config.resolve = {
...config.resolve,
alias: { '@': path.resolve(__dirname, 'src') },
};
return config;
}