0
I am creating an Angular library with NPM and would like to have a css folder and custom fonts available in the final build, so it is possible for me to just import the scss files into the applications that will install this library directly into their scss files.
Structure of lib:
src/
--lib/
----styles/
------variables.scss
------custom.scss
----components/
--public_api.ts
--test.ts
package.json
Import would be something like?
@import '~@minhalib/styles/variables.scss'