0

I'm setting up vagrant on my Windows 7 and configuring Vagrantfile. Can I set the actual folder and guest folder to be the same? Here is my code:

config.vm.synced_folder "C:\Users\dmitry\VM\code", "/vagrant/code"
Dmitry
  • 4,143
  • 10
  • 46
  • 57

1 Answers1

1

Yes you can. I used the config like below and it worked beautifully:

config.vm.synced_folder "C:/git/ui", "/home/vagrant/ui"

Utsav Dawn
  • 7,896
  • 2
  • 29
  • 44