This commit is contained in:
2020-10-31 18:50:50 +05:00
parent a11a599135
commit 5da923dc3b
3 changed files with 1 additions and 9 deletions

View File

@@ -22,7 +22,6 @@
"livewire/livewire": "^2.0", "livewire/livewire": "^2.0",
"mtownsend/read-time": "^1.1", "mtownsend/read-time": "^1.1",
"realrashid/sweet-alert": "^3.1", "realrashid/sweet-alert": "^3.1",
"spatie/browsershot": "^3.40",
"spatie/laravel-analytics": "^3.10", "spatie/laravel-analytics": "^3.10",
"symfony/panther": "^0.7.1" "symfony/panther": "^0.7.1"
}, },

View File

@@ -27,7 +27,6 @@
}, },
"dependencies": { "dependencies": {
"moment": "^2.28.0", "moment": "^2.28.0",
"puppeteer": "^5.4.1",
"tailwindcss": "^1.6.2", "tailwindcss": "^1.6.2",
"turbolinks": "^5.2.0", "turbolinks": "^5.2.0",
"vue": "^2.6.11", "vue": "^2.6.11",

View File

@@ -63,10 +63,4 @@ Route::get('ogimage/{article}', function(Article $article){
return view('ogimage', [ return view('ogimage', [
'article' => $article 'article' => $article
]); ]);
}); });
Route::get('/test', function(){
return Browsershot::url('https://jinas.me')
->base64Screenshot();
});