You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got en error when building as SSR with Quasar: quasar build -m ssr
When running... cd dist/ssr node index.js or npm run start
... I get this error:
Error [ERR_REQUIRE_ESM]: require() of ES Module .../node_modules/vue3-ytframe/dist/ytframe.umd.js from .../dist/ssr/server/server-entry.js not supported.
ytframe.umd.js is treated as an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which declares all .js files in that package scope as ES modules.
Instead rename ytframe.umd.js to end in .cjs, change the requiring code to use dynamic import() which is available in all CommonJS modules, or change "type": "module" to "type": "commonjs" in .../node_modules/vue3-ytframe/package.json to treat all .js files as CommonJS (using .mjs for all ES modules instead).
The text was updated successfully, but these errors were encountered:
I got en error when building as SSR with Quasar:
quasar build -m ssr
When running...
cd dist/ssr
node index.js
ornpm run start
... I get this error:
The text was updated successfully, but these errors were encountered: