mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
14 lines
335 B
JavaScript
14 lines
335 B
JavaScript
const path = require('path');
|
|
|
|
const resolve = {
|
|
extensions: ['', '.js', '.vue'],
|
|
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;
|