postcss-remove-all-at-rules

PostCSS plugin to remove all of the at-rules

Usage no npm install needed!

<script type="module">
  import postcssRemoveAllAtRules from 'https://cdn.skypack.dev/postcss-remove-all-at-rules';
</script>

README

PostCSS Remove All At-Rules

PostCSS plugin to remove all of the at-rules.

.foo {
    /* Input example */
}

@media print {
  .bar {
  }
}

@-moz-document {
  .baz {
  }
}
.foo {
  /* Output example */
}

Usage

Check you project for existed PostCSS config: postcss.config.js in the project root, "postcss" section in package.json or postcss in bundle config.

If you already use PostCSS, add the plugin to plugins list:

module.exports = {
  plugins: [
+   require('postcss-remove-all-at-rules'),
    require('autoprefixer')
  ]
}

If you do not use PostCSS, add it according to official docs and set this plugin in settings.