Chatwoot/config/webpack/resolve.js

14 lines
331 B
JavaScript
Raw Normal View History

2019-08-21 04:57:57 +00:00
const path = require('path');
const resolve = {
2019-08-21 15:52:20 +00:00
extensions: ['.js', '.vue'],
2019-08-21 04:57:57 +00:00
alias: {
vue$: 'vue/dist/vue.common.js',
src: path.resolve('./app/javascript/src'),
assets: path.resolve('./app/javascript/src/assets'),
components: path.resolve('./app/javascript/src/components'),
},
};
module.exports = resolve;