NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/postcss-normalize-charset
2023-09-14 14:47:11 +08:00
..
node_modules 111 2023-09-14 14:47:11 +08:00
CHANGELOG.md 111 2023-09-14 14:47:11 +08:00
index.js 111 2023-09-14 14:47:11 +08:00
LICENSE 111 2023-09-14 14:47:11 +08:00
package.json 111 2023-09-14 14:47:11 +08:00
README.md 111 2023-09-14 14:47:11 +08:00

postcss-normalize-charset Build Status

Add necessary or remove extra charset with PostCSS

a{
  content: "©";
}
@charset "utf-8";
a{
  content: "©";
}

API

normalizeCharset([options])

options

add

Type: boolean Default: true

Pass false to stop the module from adding a @charset declaration if it was missing from the file (and the file contained non-ascii characters).

Usage

postcss([ require('postcss-normalize-charset') ])

See PostCSS docs for examples for your environment.

MIT © Bogdan Chadkin