@meistrari/tela-build 1.50.3 → 1.50.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meistrari/tela-build",
3
- "version": "1.50.3",
3
+ "version": "1.50.4",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "app.config.ts",
@@ -36,7 +36,10 @@ vi.mock('nuxt/app', () => ({
36
36
  useRuntimeConfig: () => runtimeConfig.current,
37
37
  }))
38
38
 
39
- const { default: mirrorAvatarRuntimeConfig } = await import('../avatar-runtime-config.client')
39
+ // The mocked defineNuxtPlugin returns the setup function unchanged, so the
40
+ // default export is a no-arg callable at runtime even though its static type
41
+ // is Nuxt's Plugin (which expects a nuxtApp argument).
42
+ const { default: mirrorAvatarRuntimeConfig } = await import('../avatar-runtime-config.client') as unknown as { default: () => void }
40
43
 
41
44
  function getWindow(): NuxtWindow {
42
45
  return window