From 330ce8f7e3001911635278a9ebdeee9f7cf1b594 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Wed, 3 Jan 2024 00:43:28 +0800 Subject: [PATCH] Laravel Vapor - attempt to fix a missing asset (Error 403) --- gulpfile.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 8d2cea34..ddf0bc8e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -16,9 +16,6 @@ const onError = (error) => { const sassOptions = {style: 'compressed'}; -//cief todo: gulp -// const ASSET_URL = process.env.ASSET_URL; - gulp.task('vendorJs', () => { fancyLog('Compiling vendor JS dependencies'); @@ -33,7 +30,6 @@ 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}))