Closed rodoabad closed 3 years ago
Hi @rodoabad,
Are you trying to import stylesheet from node_modules/@foo/branding/...
, using webpack feature to resolve ~
to node_modules
? esbuild
doesn't support this feature.
You can import stylesheet you need, specifying relative path explicitly, like this:
@import './node_modules/@foo/branding/styles/variables'
Thanks. Looks like I have to change all references to that pattern.
I'm having some trouble with files that use
@import
. Unsure how to proceed on this one.