Skip to content

Commit a9049b3

Browse files
author
Baitu Huang
committed
update readme
1 parent c90f87a commit a9049b3

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ options:
1616
flags: {
1717
FLAG_A: true
1818
},
19-
// string that used as namespace of flags in script
19+
// string that used as namespace of flags in script, default is "flags"
2020
namespace: '',
2121
// filter resources by regex when the flag name(as key) is false
2222
files: {
@@ -58,7 +58,7 @@ module.exports = { /* your webpack config */
5858
plugins: [
5959
new VueFlagsPlugin({
6060
flags,
61-
namespace: 'flags'// or omit this option
61+
namespace: 'flags'
6262
})
6363
]
6464
};
@@ -100,9 +100,8 @@ vue component:
100100
```
101101

102102
### Caveats
103-
- **[`postcss-loader`](https://github.com/postcss/postcss-loader) is required to support flags in css**
104-
- for version>=15, see: https://vue-loader.vuejs.org/guide/pre-processors.html#postcss
105-
- for older `vue-loader`, see: https://vue-loader-v14.vuejs.org/zh-cn/features/postcss.html (*`vue-loader` which version < 15 is deprecated, do not use it.*)
106-
103+
- **[`postcss-loader`](https://github.com/postcss/postcss-loader) is required to support flags in css**, see https://vue-loader.vuejs.org/guide/pre-processors.html#postcss
104+
- not support `vue-loader` version < 15 and `webpack` version < 4
105+
107106
### License
108107
MIT

0 commit comments

Comments
 (0)