This commit is contained in:
2021-05-19 11:53:00 +07:00
commit b493d09a32
7 changed files with 18569 additions and 0 deletions

13
config-overrides.js Normal file
View File

@@ -0,0 +1,13 @@
/* 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;
}