[Vuejs]-Laravel Mix and VUE, VUE not found

0👍

In your webpack.mix file you have the following line:
path.resolve(__dirname, 'node_modules/vue'),

Just make sure that this is correct, It maybe that you need to target a dist folder or similar e.g.

path.resolve(__dirname, 'node_modules/vue/dist'),

Leave a comment