@oroinc/oro-webpack-config-builder 6.0.0-lts08 → 6.0.0-lts09
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 +4 -3
- package/package.json +1 -1
package/oro-webpack-config.js
CHANGED
|
@@ -555,10 +555,11 @@ class ConfigBuilder {
|
|
|
555
555
|
options: {
|
|
556
556
|
implementation: require('sass'),
|
|
557
557
|
sassOptions: {
|
|
558
|
-
|
|
559
|
-
path.join(this.resolvedPublicPath, '/bundles')
|
|
558
|
+
loadPaths: [
|
|
559
|
+
path.join(this.resolvedPublicPath, '/bundles'),
|
|
560
|
+
path.join(this.resolvedProjectPath, '/assets')
|
|
560
561
|
],
|
|
561
|
-
|
|
562
|
+
style: 'expanded'
|
|
562
563
|
},
|
|
563
564
|
sourceMap: true,
|
|
564
565
|
additionalData: this.prepareAdditionalSCSS.bind(this, themeDefinition)
|
package/package.json
CHANGED