[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live) [Discussions](/c/community/4) # SCSS modules as separate packages 55 views · 0 likes · 1 post mykhailokliuvak (@mykhailo-xicaycom) · 2025-01-21 Hi all, I'm currently migrating NextJS project to monorepo and I'm not sure if that's possible to separate SCSS modules to separate package in the way that I still can use them as modules and not build CSS code. So that I want to have packages/styles repo, inside this repo is Form.module.scss for example and from my apps/web I want to use it like: ``` import formStyles from '@packages/styles' <div className={styles.formWrapper} /> ```