Skip to content

Instantly share code, notes, and snippets.

@phanect
Created December 6, 2023 06:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phanect/08b58f48563c5d1562acead784f6a5f3 to your computer and use it in GitHub Desktop.
Save phanect/08b58f48563c5d1562acead784f6a5f3 to your computer and use it in GitHub Desktop.
Expose stylesheet from an NPM package ([ref](https://github.com/vitejs/vite/discussions/2657#discussioncomment-1345262))
{
// ...
"exports": {
".": {
"import": "./dist/main.mjs",
"require": "./dist/main.cjs"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment