Files
archived-rttys/frontend/vue.config.js
T
Jianhui Zhao 1324911b10 fix: sign out
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-02-27 23:15:34 +08:00

49 lines
926 B
Go

module.exports = {
pages: {
index: {
entry: 'src/main.ts',
title: 'Rttys'
}
},
pluginOptions: {
i18n: {
locale: 'en',
fallbackLocale: 'en',
localeDir: 'locales',
enableInSFC: false
}
},
devServer: {
proxy: {
'/devs': {
target: 'http://127.0.0.1:5913'
},
'/signin': {
target: 'http://127.0.0.1:5913'
},
'/signout': {
target: 'http://127.0.0.1:5913'
},
'/alive': {
target: 'http://127.0.0.1:5913'
},
'/signup': {
target: 'http://127.0.0.1:5913'
},
'/cmd/*': {
target: 'http://127.0.0.1:5913'
},
'/connect/*': {
ws: true,
target: 'http://127.0.0.1:5913'
},
'/fontsize/*': {
target: 'http://127.0.0.1:5913'
},
'/authorized/*': {
target: 'http://127.0.0.1:5913'
}
}
}
};