-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: issues for asset paths and rename webpack.assets-paths (#143)
fix: issues for asset paths and rename webpack.assets-paths to sass.assets-path
- Loading branch information
Showing
4 changed files
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
// If this library is used as an npm dependency, and the source files should be included rather than css, this corrects the paths. | ||
$icons-path: "@db-ui/core/dist/icons/"; | ||
$images-path: "@db-ui/core/dist/images/"; | ||
$fonts-path: "@db-ui/core/dist/fonts/"; | ||
@use "default.assets-paths" as * with ( | ||
$icons-path: "@db-ui/base/build/assets/icons/", | ||
$images-path: "@db-ui/base/build/assets/images/", | ||
$fonts-path: "@db-ui/base/build/assets/fonts/" | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// If this library is used as an npm dependency, and the source files should be included rather than css, this corrects the paths. | ||
@use "default.assets-paths" with ( | ||
$icons-path: "~@db-ui/base/build/assets/icons/", | ||
$images-path: "~@db-ui/base/build/assets/images/", | ||
$fonts-path: "~@db-ui/base/build/assets/fonts/" | ||
); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters