We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
maybe there are tips and tricks for using esbuild js, to display icons ?? Key information
Minimum reproducible sandbox
esbuid config import esbuild from "esbuild"; import {sassPlugin} from "esbuild-sass-plugin"; esbuild.build({ logLevel: "info", entryPoints: ["./resources/javascript/main.js"], outfile: "./public/assets/bundle.js", bundle: true, loader: { ".js": "jsx", ".png": "dataurl", ".webp": "dataurl", ".woff": "dataurl", ".woff2": "dataurl", ".eot": "dataurl", ".ttf": "dataurl", ".svg": "dataurl", }, plugins: [sassPlugin()] }).catch((error) => { console.error(error); process.exit(1); });
The text was updated successfully, but these errors were encountered:
This is likely the same underlying issue as vite/rollup: #5463
I'll go ahead and modify the linked issue title to reflect the additional build tool, and close this one in as a duplicate.
In the interim, we recommend using the appendIconComponentCache API to cache icons that you use ahead of time: https://github.com/elastic/eui/tree/main/wiki/consuming-eui#failing-icon-imports
appendIconComponentCache
Sorry, something went wrong.
No branches or pull requests
maybe there are tips and tricks for using esbuild js, to display icons ??
Key information
Minimum reproducible sandbox
The text was updated successfully, but these errors were encountered: