[Vuejs]-What's the lightest way to automate .vue file compilation without webpack?

0👍

I realize your question says ‘without webpack’ but you may be interested in backpack – a CLI app i came across for building Vue.js without requiring you to write any configuration code. It is basically webpack preconfigured as a minimalistic build system for Node.js. It provides two commands, dev for live reload enabled development and build for building you project.

Leave a comment