add users table, user form, show\create\delete user, router service

This commit is contained in:
2021-06-20 01:45:52 +03:00
parent ab0ecb1b3e
commit 5d2ecf2f0c
22 changed files with 537 additions and 23 deletions

View File

@ -26,6 +26,19 @@ module.exports = {
compress: true,
open: true,
port: 3189,
http2: true,
proxy: {
'/api/users': {
target: 'http://vigdorov.ru:3011',
pathRewrite: { '^/api': '' },
secure: false,
},
'/api/bot': {
target: 'http://vigdorov.ru:3012',
pathRewrite: { '^/api/bot': '' },
secure: false,
},
},
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],