[Vuejs]-Building an AngularJS and Vue.js into one app using webpack?

0👍

I wasn’t seeing the wood for the trees. The problem isn’t that that webpack.config.js doesn’t succesfully producing a working angular & vue combined app, the problem is that I’m not providing a template that actually uses either of these things, so it just produces a blank index.html with the scripts provided but no content in the body.

Changing the

new HtmlWebpackPlugin({
        //template: 'source/index.html',
    }),

in my question to have a template that uses both an AnularJS component and a Vue component worked fine.

Leave a comment