I wrote a plugin that does something similar to copy-webpack-plugin, but provides some extended functionalities that I need. Essentially it simply copies files from src
to dist
and performs some operations on them.
It works fine when I run a production build, but in my development build, since i'm using devServer
and everything is in memory, this doesn't work.
How can I solve this?