Chatwoot/config/webpack/resolve.js
2019-10-16 14:36:17 +05:30

13 lines
355 B
JavaScript

const path = require('path');
const resolve = {
extensions: ['.js', '.vue'],
alias: {
vue$: 'vue/dist/vue.common.js',
dashboard: path.resolve('./app/javascript/dashboard'),
assets: path.resolve('./app/javascript/dashboard/assets'),
components: path.resolve('./app/javascript/dashboard/components'),
},
};
module.exports = resolve;