Created
December 6, 2023 06:24
-
-
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))
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// ... | |
"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