added /oidc/ as a proxy route to nuxt.config.js

This commit is contained in:
David Leimroth 2022-02-08 19:38:53 +01:00
parent c11c0ff54e
commit c4dd6ed19a

View File

@ -79,7 +79,8 @@ module.exports = {
'/lib/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' }, '/lib/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' },
'/ebook/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' }, '/ebook/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' },
'/s/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' }, '/s/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' },
'/metadata/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' } '/metadata/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' },
'/oidc/': { target: process.env.NODE_ENV !== 'production' ? 'http://localhost:3333' : '/' }
}, },
io: { io: {