Synced folder in vagrant is not syncing in realtime
In your Vagrantfile the synced folder type is default vboxsf, however, in the vagrant up stdout, it is showing rsync type, I think you need to fix it in the config file. Assume that you are using rsync type, you should have the following in your Vagrantfile Vagrant.configure(“2”) do |config| config.vm.synced_folder “.”, “/vagrant”, type: “rsync”, … Read more