TypeError: Module should export a function: @vue/composition-api

Viewed 327

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.

1 Answers

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',
]
Related