-
-
Notifications
You must be signed in to change notification settings - Fork 103
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
Remove webpack usage #47
Comments
Looks like rollup don't support HMR ? 🙃 |
Maybe we could use rollup-plugin-server with rollup-plugin-livereload(or rollup-plugin-hotreload). What do you think? |
@DaniAcu will it work well with react ? |
Let me try |
@DaniAcu well if is efficient for development as the |
It's little tricky to do, but I will continue to research how to do |
We now use nollup for v2.0.0 https://github.com/PepsRyuu/nollup |
Currently we use
webpack
to run the dev server androllup
to build the production module.So we have two different config files and both are required to be on sync and be compatible with each other.
Is there anyway to just use
rollup
and discardweb-pack
?Well there is this, but, web-pack has
react-hot-loader
implemented, so not sure if this is possible:https://github.com/thgh/rollup-plugin-serve
The text was updated successfully, but these errors were encountered: