From f57fd849e574be981c2683f416ac4eb86fee6164 Mon Sep 17 00:00:00 2001 From: Roni Laukkarinen Date: Tue, 19 Apr 2022 11:40:54 +0300 Subject: [PATCH] Fix proxy url, add proxyUrl as variable --- CHANGELOG.md | 4 ++++ gulp/config.js | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc2bc46..72fbd4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 2.4.5: 2022-04-19 + +* Fix proxy url, add proxyUrl as variable + ### 2.4.4: 2022-04-11 * Add cssnano and related postcss-plugins, deprecate gulp-clean-css that is in maintenance-mode diff --git a/gulp/config.js b/gulp/config.js index e3571bd..ab2bcd4 100644 --- a/gulp/config.js +++ b/gulp/config.js @@ -1,4 +1,5 @@ const themeDir = 'content/themes/THEMENAME/'; +const proxyUrl = 'https://PROJECTNAME.test'; module.exports = { cssnano: { @@ -33,7 +34,7 @@ module.exports = { opts: { logLevel: 'debug', injectChanges: true, - proxy: 'https://airdev.test', + proxy: proxyUrl, browser: 'Google Chrome', open: false, notify: true,