From 143886c4b57968b7d9edc765dc727bfca2c9dad6 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Wed, 3 Jan 2024 00:09:58 +0800 Subject: [PATCH] Laravel Vapor - attempt to fix a missing asset (Error 403) --- gulpfile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 567c63bb..a2a443f8 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -33,6 +33,8 @@ gulp.task('vendorJs', () => { gulp.task('vendorCss', () => { fancyLog('Compiling vendor CSS dependencies'); + fancyLog('ASSET_URL: ' + ASSET_URL); + return gulp.src(pkg.globs.vendorCss) .pipe(plugins.plumber({errorHandler: onError})) .pipe(plugins.print())