I did everything exactly as in this video https://www.youtube.com/watch?v=UHSipe7pSac but I got this error i cmd :( "ERROR in ./resources/js/app.js 4:0-28 Module not found: Error: Can't resolve './vue/app' in 'D:\osp\domains\laravel-todolist\resources\js' webpack compiled with 1 error" and error in browser console "Uncaught Error: Cannot find module './vue/app'".
Here is my short overview video with my code https://www.youtube.com/watch?v=zZqYJaIgau4
I created folder /vue/ in /resources/js/ folder and put here file 'app.vue' with code
<template><div>Hello</div></template> <script>export default {}</script>
Then in /resources/js/app.js file I'm importing Vue instance and my template file.
require('./bootstrap');
import Vue from 'vue';
import App from './vue/app';
const app = new Vue({
el: '#app',
components: { App }
})
Please help understand where is the problem :(