@spryker/oryx-for-zed 3.4.0 → 3.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ### 3.4.1
4
+
5
+ Released on 18.03.2024
6
+
7
+ - Fix resolving css urls with absolute path.
8
+
3
9
  ### 3.4.0
4
10
 
5
11
  Released on 18.03.2024
@@ -112,6 +112,11 @@ async function getConfiguration(settings) {
112
112
  {
113
113
  loader: 'css-loader',
114
114
  options: {
115
+ filter: (url, _resourcePath) =>
116
+ !(
117
+ url.includes('assets/img/') ||
118
+ url.includes('bundles/images/')
119
+ ),
115
120
  importLoaders: 1,
116
121
  },
117
122
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spryker/oryx-for-zed",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "Spryker ZED frontend automation tool",
5
5
  "repository": {
6
6
  "type": "git",