A sizzling PostCSS boilerplate
npm install @viur/ignite 
Our goal is to create a boilerplate that is sturdy and scalable
yet lightweight and adaptable to our different customer projects.
Our approach to CSS is influenced by many modern CSS principles: object oriented, functional and structured.
It uses the power of PostCSS.
For a detailed introduction and examples have a look at ignite.viur.dev.
---
NPM
Use NPM to install Ignite:
``bash`
npm install @viur/ignite
Please use postcss-import with your PostCSS pipeline.
This way you are able to get rid of ugly ../node_modules/@viur/ignite/ignite.css imports:
`postcss`
@import url('@viur/ignite/ignite.css');
Submodule
You can add Ignite as submodule to your project as well:
`bash`
git submodule add git@github.com:viur-framework/ignite.git`
orbash`
git submodule add https://github.com/viur-framework/ignite.git`
Now you can import Ignite in your projects style.csspostcss`
@import url('ignite/ignite.css');
Builds
Preprocessed versions of Ignite can be found in dist folder:
Bundled:
`postcss`
@import url('@viur/ignite/dist/ignite.css');`
Minified:postcss``
@import url('@viur/ignite/dist/ignite.min.css');
---
---