Reputation: 725
So I am transitioning to Webpack from Gulp. Can I still watch for changes and for instance minify images e.g. in app/images/**/*.{svg,etc}?
Upvotes: 6
Views: 5270
Reputation: 861
You can use webpack with gulp https://webpack.js.org/guides/integrations/#gulp
Upvotes: 1
Reputation: 32066
Yes. If you're using Webpack, there is no reason to manage any assets with Gulp. Suggested reading: Webpack, when to use and why.
Upvotes: 8