@oroinc/oro-webpack-config-builder 6.1.0-lts09 → 6.1.0-lts10
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/oro-webpack-config.js
CHANGED
|
@@ -286,7 +286,7 @@ class ConfigBuilder {
|
|
|
286
286
|
filename: '[name].js',
|
|
287
287
|
// Because we use third party libraries 'chunkFilename' should include only [name]
|
|
288
288
|
chunkFilename: this._getVersionedPath('chunk/[name].js', this.assetVersion),
|
|
289
|
-
crossOriginLoading:
|
|
289
|
+
crossOriginLoading: 'anonymous'
|
|
290
290
|
},
|
|
291
291
|
devtool: !env.skipSourcemap && 'inline-cheap-module-source-map',
|
|
292
292
|
mode: 'development',
|
|
@@ -325,7 +325,7 @@ class ConfigBuilder {
|
|
|
325
325
|
],
|
|
326
326
|
rules: [
|
|
327
327
|
{
|
|
328
|
-
test: /\.(eot|ttf|woff|woff2|cur|ico|svg|png|jpg|gif)$/,
|
|
328
|
+
test: /\.(eot|ttf|woff|woff2|cur|ico|svg|png|jpg|gif|webp)$/,
|
|
329
329
|
loader: 'url-loader',
|
|
330
330
|
options: {
|
|
331
331
|
limit: 1,
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ class SvgIconsSchemaError extends BaseError {
|
|
|
4
4
|
/**
|
|
5
5
|
* @example
|
|
6
6
|
* Invalid Theme config: the "theme.yml" files in the "default" theme do not match the API schema.
|
|
7
|
-
* has an unknown property '
|
|
7
|
+
* has an unknown property 'rest'.
|
|
8
8
|
* at default/theme.yml
|
|
9
9
|
*
|
|
10
10
|
* @example
|