mirror of
https://github.com/seigler/triplebyte-react-spa
synced 2025-07-25 14:56:09 +00:00
9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
webpack(config, options) {
|
|
config.resolve.alias['components'] = path.join(__dirname, 'components')
|
|
config.resolve.alias['lib'] = path.join(__dirname, 'lib')
|
|
return config
|
|
},
|
|
};
|