When building the Shopware 6 PWA app based on NuxtJS, I always get the following error message:
TypeError: Module should export a function: @ vue / composition-api
Anyone here has an idea how to get it to work? Thanks in advance.
When building the Shopware 6 PWA app based on NuxtJS, I always get the following error message:
TypeError: Module should export a function: @ vue / composition-api
Anyone here has an idea how to get it to work? Thanks in advance.
In nuxt.config.js make sure that your build module config is correct:
Do not forget the /module at the end of it.
buildModules: [
'@nuxtjs/composition-api/module',
]