-
-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing $lib/paraglide from skeleton project #258
Comments
Unfortunately, I'm unable to replicate the issue with the provided selections. Can you trim it down to only the minimally reproducible portions (i.e. only selecting |
Same thing with minimal options selected, here's the link to the repo https://github.com/pe1uca/testSvCreate
|
@pe1uca I experienced the same issue, but it was eventually simply the fetch of inlang plugins from https://cdn.jsdelivr.net failing at compilation time. When running
I solved by disabling SSL verification for the process as a workaround. HTH... |
you can load the inlang plugins from node_modules via fs path instead. just install the packages for them as devDependency. |
Can you give some more detailed instructions, please? I am pretty new and cannot get it to work. |
Since this seems to be problematic for at least 3 users , we should check if we can find another way to do this. |
Yeah I actually did it for job and you have to patch the package to remove the post install. Curiously they basically just read the file and eval it instead of actually importing it so if you really want I guess you could include it just as a copy pasted file |
you add this in paraglide settings.json instead of the jsdelivr urls
and you have to install each of the ones you need as devDependency. To prevent them from executing scripts you can use pnpms |
When creating a project using
bunx sv create new-project
and selecting the options below, the app doesn't run with errorENOENT: No such file or directory
This seems to be because the project doesn't include the files necessary inside
src/lib/paraglide
which are referenced in thevite.config.ts
file.After commenting the paraglide plugin and the references in the project it can properly start.
The text was updated successfully, but these errors were encountered: