Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 976f0b6

Browse files
committedFeb 11, 2022
Add local version of postcss config to differentiate between Storybook/vite modules and prod bundle builds
1 parent c909f19 commit 976f0b6

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
 

‎packages/uui-css/postcss.config.cjs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = () => {
2+
return {
3+
plugins: {
4+
'postcss-advanced-variables': {},
5+
'postcss-color-function': {},
6+
'postcss-url': {},
7+
autoprefixer: {},
8+
},
9+
};
10+
};

‎postcss.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ module.exports = () => {
33
plugins: {
44
'postcss-advanced-variables': {},
55
'postcss-color-function': {},
6-
'postcss-url': {},
7-
autoprefixer: {},
86
},
97
};
108
};

0 commit comments

Comments
 (0)
Please sign in to comment.