vueComponent / ant-design-vue-nuxt

MIT License
73 stars 8 forks source link

dayjs error not provide an export named 'default' #44

Closed bobby169 closed 9 months ago

bobby169 commented 9 months ago

client.mjs:30 SyntaxError: The requested module '/_nuxt/node_modules/.pnpm/dayjs@1.11.10/node_modules/dayjs/plugin/advancedFormat.js?v=45ac0268' does not provide an export named 'default' (at dayjs.js?v=45ac0268:7:8)

The above error is reported, dayjs needs to set tsconfig.json

{ //tsconfig.json
  "compilerOptions": {
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
  }
}
markthree commented 9 months ago

The same solution → https://github.com/nuxt/nuxt/issues/26007#issuecomment-1970330058