What is the issue?
Running nuxt dev results in this error:
[nitro 01:38:44] ERROR RollupError: [plugin impound] Vue app aliases are not allowed in server runtime. [importing #build/nuxt.config.mjs from node_modules/.pnpm/nuxt@4.4.2_@babel+core@7.29.0_@babel+plugin-syntax-jsx@7.28.6_@babel+core@7.29.0__@parc_8d508d11d905f0dce2f8a728bd6765b7/node_modules/nuxt/dist/app/nuxt.js]
Code:
2 | import { createHooks } from "hookable";
3 | import { getContext } from "unctx";
> 4 | import { appId, asyncCallHook, chunkErrorEvent, multiApp } from "#build/nuxt.config.mjs";
| ^
5 | export function getNuxtAppCtx(id = appId || "nuxt-app") {
6 | return getContext(id, {
Suggestions:
- Move this code to your Vue app directory or use a shared utility.
and attempting to load localhost:3000 just ends up with nothing happening.
What have you tried?
pnpm up, that's it so far.