We use the some of the helpers in shared and can't access them using vite because they are not in exports.
"exports": {
".": "./framework7-svelte.js",
"./components/*": "./components/*"
},
can it be the following, or is it even needed?
"exports": {
".": "./framework7-svelte.js",
"./components/*": "./components/*",
"./shared/*": "./shared/*"
},
We use the some of the helpers in shared and can't access them using vite because they are not in exports.
can it be the following, or is it even needed?