-
Notifications
You must be signed in to change notification settings - Fork 50
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
Sitelet debug with npm packages STEP 3 #1408
Comments
* #1408 write re-exports for non-bundled sitelet mode * testing with FSharp proj * fixes * small fix for root.js addresses
Added a Vite helper in #1410 |
A proposal: In OFPC debug mode, WebSharper unpack would create a |
Last piece needed for working with Sitelets using module-based JS. For local debug mode, for readability and quick iteration, it would be best if one-file-per-class readable .js files are used. However, browsers can't handle npm package imports as is, because it's underdefined (the
packages-lock.json
file and thenode_modules
folder are not accessible through the localhost server).We need to provide either an import map or an integration for a localhost prebundler like Vite.
The text was updated successfully, but these errors were encountered: