Subscribe on changes!

Playground warning while running SSR

avatar
Feb 20th 2024

This is a bug of @vue/repl. When repl performs ssr in the online environment, import { useModel as _useModel } from 'vue' will use the *runtime.esm-browser.js file, but in the dev environment it will The *rutime-dom.esm-bundler.js file is used, so there is no problem with the dev environment

image image image


The processing of these two file formats for SSR is different. So ssr bug will appear in the online environment.

image