forked from AkkomaGang/akkoma-fe
Add proxied routes.
This commit is contained in:
parent
4c2764c747
commit
eb9873ac74
1 changed files with 12 additions and 1 deletions
|
@ -21,7 +21,18 @@ module.exports = {
|
|||
port: 8080,
|
||||
assetsSubDirectory: 'static',
|
||||
assetsPublicPath: '/',
|
||||
proxyTable: {},
|
||||
proxyTable: {
|
||||
'/api': {
|
||||
target: 'https://social.heldscal.la/',
|
||||
changeOrigin: true,
|
||||
cookieDomainRewrite: 'localhost'
|
||||
},
|
||||
'/main': {
|
||||
target: 'https://social.heldscal.la/',
|
||||
changeOrigin: true,
|
||||
cookieDomainRewrite: 'localhost'
|
||||
}
|
||||
},
|
||||
// CSS Sourcemaps off by default because relative paths are "buggy"
|
||||
// with this option, according to the CSS-Loader README
|
||||
// (https://github.com/webpack/css-loader#sourcemaps)
|
||||
|
|
Loading…
Reference in a new issue