I am currently using require.js for development, so I can quickly iterate (change the file, refresh the page, not build a step between them), but I use webpack as a build tool, since it is superior to r.js , I would like to get rid of require.js completely and use webpack as a script loader in development. I know what exactly is for webpack dev server , but I specifically do not want to use it.
Ideally, I would just include some kind of webpack loader in <script> , name it in the webpack.js build webpack.js and let it complete the task.
source share