Skip to content

Instantly share code, notes, and snippets.

View Edofre's full-sized avatar
🐈

Edo Freriks Edofre

🐈
View GitHub Profile
@mariojankovic
mariojankovic / Nuxt.js .htaccess
Created June 21, 2019 10:36
.htaccess for Nuxt.js under apache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
@Edofre
Edofre / gist:a3ad0d72a4a01b3dd4a7b8fb8ff81647
Last active September 3, 2020 12:57
Homestead WKHTMLTOPDF
sudo wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.bionic_amd64.deb
sudo dpkg -i wkhtmltox_0.12.6-1.bionic_amd64.deb
sudo apt-get install -f
sudo ln -s /usr/local/bin/wkhtmltopdf /usr/bin
sudo ln -s /usr/local/bin/wkhtmltoimage /usr/bin
Verify with:
wkhtmltopdf http://www.google.com google.pdf