shopware-frontends-proxy
v1.0.1
Published
This Shopware Frontends (nuxt3) module proxies requests to the Shopware 6 instance to bypass preflight requests.
Downloads
27
Maintainers
Readme
Shopware Frontends Proxy Module
Http Proxy Middleware for Shopware Frontends.
Installation
npm install shopware-frontends-proxy
Usage
This will extend the nuxt.options.shopware
which is also used by shopware/frontends
as configuration.
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['shopware-frontends-proxy'],
shopware: {
shopwareEndpoint: 'YOUR_SHOPWARE_FRONTENDS_URL',
proxyDestinationEndpoint: 'YOUR_SHOPWARE_6_API_ENDPOINT',
shopwareAccessToken: 'SHOPWARE_6_ACCESS_TOKEN',
proxy: true,
},
})
Description
This module creates a proxy to bypass preflight requests in your shopware-frontends app. See the following links for the motivation for this module: