# Setup guide
There are several ways to include the SpaceFramework in your SASS/SCSS project.
# Quick setup
This method does output all classes and code from the SpaceFramework.
- Include the
spaceframework.scss
file from your package directory at the start of your project by using:@import '{your-location}/scss/spaceframework.scss';
- Done.
# Advanced setup
Recommended when you use ITCSS or SMACSS
This method does not output any classes or code by default. We recommend this method when you have project based on ITCSS or SMACSS. You can decide where you want to output the code for classes and elements.
Include the
init-spaceframework.scss
file from your package directory at the start of your project by using:Import from
node_modules
using tilde operator (~
)@import '~spaceframework/scss/init-spaceframework.scss';
or
@import '{package-directory}/spaceframework/scss/init-spaceframework.scss';
Read our instructions in ITCSS how to generate css classes for your project.
Done
← Installation ITCSS →