#3991 was resolved for framework7 core but this is still a minor issue for us with framework7-svelte. Can the same exports for "./shared/*": "./shared/*", in core be added to framework7-svelte?
We work around it by adding the following to our vite.config.js in case anyone else is running into it.
resolve: {
alias: {
'framework7-svelte/shared': path.resolve(basedir, `node_modules/framework7-svelte/shared`
),
},
},