1.0.0 • Published 7 years ago

postcss-strip-font-face v1.0.0

Weekly downloads
201
License
MIT
Repository
github
Last release
7 years ago

postcss-strip-font-face

PostCSS plugin to completely strip @font-face rules from css. In other words: koh the @font-face stealer.

/* Any other scss content */
@font-face {
  font-family: 'Any Font';
  font-style: normal;
  font-weight: 400;
  src: local('Any Font'), local('AnyFont'), url(https://any.cdn-provider.guru/any-font.woff2) format('woff2');
}

becomes

/* Any other scss content */

Usage

Simple usage can be inferred from the tests:

var postcss = require('postcss');
var stripFontFace = require('postcss-strip-font-face');

var processor = postcss([stripFontFace]);
var output = processor.process('/* Any scss content */');
console.log(output.css);
LICENSE: MIT
AUTHOR: Charlie Robbins