From 55cbe85ca87975e5b3e07fe69eed1ad96eb7b6cd Mon Sep 17 00:00:00 2001 From: Robert Lord Date: Sat, 20 Jan 2018 13:08:14 -0600 Subject: [PATCH] Increase memory of Vagrant, fixes #601 hopefully --- Vagrantfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 2fccb7c..6f2444e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,6 +1,9 @@ Vagrant.configure(2) do |config| config.vm.box = "ubuntu/trusty64" config.vm.network :forwarded_port, guest: 4567, host: 4567 + config.vm.provider "virtualbox" do |vb| + vb.memory = "2048" + end config.vm.provision "bootstrap", type: "shell", @@ -38,4 +41,4 @@ Vagrant.configure(2) do |config| cd /vagrant bundle exec middleman server --watcher-force-polling --watcher-latency=1 &> ~/middleman.log & SHELL -end \ No newline at end of file +end