How to use jss-plugin-vendor-prefixer - 1 common examples

To help you get started, we’ve selected a few jss-plugin-vendor-prefixer examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github mui-org / material-ui / packages / material-ui-styles / src / jssPreset / jssPreset.js View on Github external
function jssPreset() {
  return {
    plugins: [
      functions(),
      global(),
      nested(),
      camelCase(),
      defaultUnit(),
      // Disable the vendor prefixer server-side, it does nothing.
      // This way, we can get a performance boost.
      // In the documentation, we are using `autoprefixer` to solve this problem.
      typeof window === 'undefined' ? null : vendorPrefixer(),
      propsSort(),
    ],
  };
}

jss-plugin-vendor-prefixer

JSS plugin that handles vendor prefixes in the browser

MIT
Latest version published 1 year ago

Package Health Score

81 / 100
Full package analysis

Popular jss-plugin-vendor-prefixer functions