Skip to content

Commit

Permalink
Fix proxy url, add proxyUrl as variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Apr 19, 2022
1 parent c6a8f91 commit f57fd84
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion gulp/config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const themeDir = 'content/themes/THEMENAME/';
const proxyUrl = 'https://PROJECTNAME.test';

module.exports = {
cssnano: {
Expand Down Expand Up @@ -33,7 +34,7 @@ module.exports = {
opts: {
logLevel: 'debug',
injectChanges: true,
proxy: 'https://airdev.test',
proxy: proxyUrl,
browser: 'Google Chrome',
open: false,
notify: true,
Expand Down

0 comments on commit f57fd84

Please sign in to comment.