mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-07-13 21:08:19 +08:00
Co-authored-by: Nithin David Thomas <[email protected]> Co-authored-by: Sojan Jose <[email protected]>
15 lines
408 B
JavaScript
15 lines
408 B
JavaScript
const path = require('path');
|
|
|
|
const resolve = {
|
|
extensions: ['.js', '.vue'],
|
|
alias: {
|
|
vue$: 'vue/dist/vue.common.js',
|
|
dashboard: path.resolve('./app/javascript/dashboard'),
|
|
widget: path.resolve('./app/javascript/widget'),
|
|
assets: path.resolve('./app/javascript/dashboard/assets'),
|
|
components: path.resolve('./app/javascript/dashboard/components'),
|
|
},
|
|
};
|
|
|
|
module.exports = resolve;
|