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 use sswr in a SvelteKit application ("@sveltejs/kit": "^1.0.0-next.442").
In dev, everything works fine. However, when I run npm run build and npm run preview and load a page that imports sswr, I see the following error:
SyntaxError: Named export 'SWR' not found. The requested module 'swrev' is a CommonJS module, which may not support all module.exports as named exports.
CommonJS modules can always be imported via the default export, for example using:
import pkg from 'swrev';
const { SWR } = pkg;
Does anyone have a working example of sswr with SvelteKit? Maybe @khromov because of #34 🤔?
The text was updated successfully, but these errors were encountered:
Ah yeah, because vite 3 outputs and expects .mjs modules instead of .esm.js. I noticed that too. The fix is update this lib to vite 3 and change the pkg exports. Will do.
I use
sswr
in a SvelteKit application ("@sveltejs/kit": "^1.0.0-next.442"
).In dev, everything works fine. However, when I run
npm run build
andnpm run preview
and load a page that importssswr
, I see the following error:Does anyone have a working example of
sswr
with SvelteKit? Maybe @khromov because of #34 🤔?The text was updated successfully, but these errors were encountered: