Add necessary or remove extra charset with PostCSS
npm install postcss-normalize-charsetAdd necessary or remove extra charset with PostCSS
``css`
a{
content: "©";
}
`css`
@charset "utf-8";
a{
content: "©";
}
#### options
##### add
Type: boolean true
Default:
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).
See the PostCSS documentation for
examples for your environment.
See CONTRIBUTORS.md.
MIT © Bogdan Chadkin