mirror of
https://github.com/lingble/chatwoot.git
synced 2025-12-14 17:57:09 +00:00
This PR adds Google OAuth for all existing users, allowing users to log in or sign up via their Google account. --------- Co-authored-by: Pranav Raj S <pranav@chatwoot.com> Co-authored-by: Fayaz Ahmed <15716057+fayazara@users.noreply.github.com> Co-authored-by: Sojan <sojan@pepalo.com>
21 lines
773 B
JavaScript
21 lines
773 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'),
|
|
survey: path.resolve('./app/javascript/survey'),
|
|
assets: path.resolve('./app/javascript/dashboard/assets'),
|
|
components: path.resolve('./app/javascript/dashboard/components'),
|
|
helpers: path.resolve('./app/javascript/shared/helpers'),
|
|
'./iconfont.eot': 'vue-easytable/libs/font/iconfont.eot',
|
|
'./iconfont.woff': 'vue-easytable/libs/font/iconfont.woff',
|
|
'./iconfont.ttf': 'vue-easytable/libs/font/iconfont.ttf',
|
|
'./iconfont.svg': 'vue-easytable/libs/font/iconfont.svg',
|
|
},
|
|
};
|
|
|
|
module.exports = resolve;
|