-
-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Export named 'createVaporSSRApp' not found #14381
Copy link
Copy link
Open
Labels
Description
Vue version
3.6.0-beta.4
Steps to reproduce
index.ts
import { createVaporSSRApp } from "vue";
// import { defineVaporComponent } from "vue";
// import { createVaporApp } from "vue";run index.ts with bun, deno or node
What is expected?
I'm expecting all imports to be valid!!!
What is actually happening?
node
import { createVaporSSRApp } from "vue";
^^^^^^^^^^^^^^^^^
SyntaxError: The requested module 'vue' does not provide an export named 'createVaporSSRApp'
at #asyncInstantiate (node:internal/modules/esm/module_job:319:21)
at async ModuleJob.run (node:internal/modules/esm/module_job:422:5)
at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:655:26)
at async asyncRunEntryPointWithESMLoader (node:internal/modules/run_main:101:5)
Node.js v25.5.0bun
SyntaxError: Export named 'createVaporSSRApp' not found in module '.../node_modules/vue/index.mjs'.
at loadAndEvaluateModule (2:1)
Bun v1.3.8 (macOS x64)deno
error: Uncaught SyntaxError: The requested module 'vue' does not provide an export named 'createVaporSSRApp'
import { createVaporSSRApp } from "vue";Reactions are currently unavailable