I'm currently facing a challenge in importing a CSS file containing variables from a node_modules package. Despite trying to replicate the process outlined in stencil.config.ts, the builds continue to end up in a different location than intended, leaving me unsure of how to proceed. Here's what I have so far:
type: "www",
dir: 'src/global',
copy: [
{ src: '../node_modules/package/design-tokens/dist/tokens.css', dest: 'themes' }
]
}
My immediate goal is to access and include a CSS file with variables located within the node_modules directory. Your guidance on this matter would be greatly appreciated.
Thank you!