mirror of
https://github.com/zhaojh329/rttys.git
synced 2026-02-27 09:53:21 +08:00
1324911b10
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
49 lines
926 B
Go
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'
|
|
}
|
|
}
|
|
}
|
|
};
|