使用 nuxt4 打包后预览时遇到 The requested module ‘vue‘ does not provide an export named ‘default‘

使用 nuxt4 打包后预览时遇到 The requested module ‘vue‘ does not provide an export named ‘default‘
最近使用nuxt4开发项目的时候打包之后进行预览时打开不了页面 后台出现报错: The requested module vue does not provide an export named default解决方法在nuxt.config.ts 添加下面的配置vite: { ssr: { noExternal: [vue], //gsap, vueuse/core, vue, vue-router }, },参考https://github.com/nuxt/nuxt/issues/33132