fela-plugin-prefixer

Fela plugin to add vendor prefixes

Usage no npm install needed!

<script type="module">
  import felaPluginPrefixer from 'https://cdn.skypack.dev/fela-plugin-prefixer';
</script>

README

fela-plugin-prefixer

npm version npm downloads Bundlephobia

Uses stylis to add vendor prefixes to both property and value.

Installation

yarn add fela-plugin-prefixer

You may alternatively use npm i --save fela-plugin-prefixer.

Usage

Make sure to read the documentation on how to use plugins.

import { createRenderer } from 'fela'
import prefixer from 'fela-plugin-prefixer'

const renderer = createRenderer({
  plugins: [prefixer()],
})

Example

Input

{
  display: 'flex',
  appearance: 'none'
}

Output

{
  display: 'webkit-box;display:-webkit-flex;display:flex',
  WebkitAppearance: 'none;-moz-appearance:none;appearance:none'
}

License

Fela is licensed under the MIT License.
Documentation is licensed under Creative Commons License.
Created with ♥ by @robinweser and all the great contributors.