Appearance
Troubleshooting ​
Collection of common issues you may run into while working with Shopware Composable Frontends. If you need help or have other questions, feel free to join the frontends slack channel.
Which SalesChannel type to use for Composable Frontends? ​
Currently you should use the default Storefront SalesChannel type. This sounds wrong, but if you using the Headless SalesChannel type you will not have nice speaking seo urls at the moment. Because the generation of seo urls will only be executed for SalesChannels with the type Storefront. We working on a more flexible solution with the core team to not have this confusion in the future.
How to use https for your localhost with Composable Frontends? ​
Option 1: Manual with mkcert ​
- Make sure you have
mkcert
installed on your system. Otherwise, follow here to set it up. - Create a valid certificate in your project folder by running
mkcert localhost
. - Update the
nuxt dev
command in yourpackage.json
.
It should look like this:NODE_TLS_REJECT_UNAUTHORIZED=0 nuxt dev --https --ssl-cert localhost.pem --ssl-key localhost-key.pem
- Now run your project with
npm run dev
orpnpm run dev
from your project root. - Your browser may ask you to accept the risk when you visit
https://localhost:3000
. This is because it is a self-signed certificate.
Option 2: Vite plugin ​
- Execute
pnpm add -D @vitejs/plugin-basic-ssl
in your project folder - Edit your
nuxt.config.ts
file and add:tsimport basicSsl from '@vitejs/plugin-basic-ssl' // https://v3.nuxtjs.org/docs/directory-structure/nuxt.config export default defineNuxtConfig({ // ... devServer: { https: true, }, vite: { plugins: [ basicSsl(), ], }, // ...
- Start your dev server with
pnpm run dev
- Your browser may ask you to accept the risk when you visit
https://localhost:3000
. This is because it is a self-signed certificate.
SSR throws error in local environment with DDEV? ​
If you are using DDEV as a local environment with SSR = true (Nuxt config for routes) and you always get a 500 error message that the context is not provided for category, you may have a problem with the SSL certificate. Try to use NODE_TLS_REJECT_UNAUTHORIZED = 0
in .env file (this is a issue with self-signed certificates). To validate if this is your problem: Connect the local Frontend with a valid SSL from a cloud instance and check it against this instance. Also check if you can reach any local store API endpoint with some API client.
412 error page during local development? ​
The HTTP status code 412 (Precondition Failed) usually means in the Shopware store API
context that the specified accessToken
is incorrect or not correct for the specified endpoint
. Check your nuxt.config.ts
file, if you do not see an error, please try connecting directly to your store API
endpoint using an API client.
ts
// a part of nuxt.config.ts
shopware: {
accessToken: "SWSCBHFSNTVMAWNZDNFKSHLAYW", // access token for corresponding sales channel
endpoint: "https://demo-frontends.shopware.store/store-api/", // endpoint where store-api is available
devStorefrontUrl: "", // to simulate a storefrontUrl which is used in registration process and should cover the domain settings for a sales channel
},
Access from origin 127.0.0.1:3000 has been blocked by CORS policy ​
Depending on your server, you may need to set the Access-Control-Allow-Origin
header to access your server from an external origin. And yes, your local development server is also an external origin in this case. Also, have a look at this documentation from MDN.
Proxy API requests ​
If you're encountering issues related to Cross-Origin Resource Sharing (CORS) or if you wish to conceal the backend API URL, you can use Vite's proxy mechanism
Nuxt example ​
Edit your nuxt.config.ts
file and add:
vite: {
server: {
proxy: {
"/store-api": {
target: "<backend url>",
changeOrigin: true,
secure: false,
},
},
},
},
Modify the Shopware API endpoint to match your local frontend URL.
{
...
shopware: {
endpoint: "<frontends >store-api/",
...
}
}