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
I get this error trying to serve vue app esbuild-minify ERROR Error: Invalid target: "and_chr90" (valid: esN, chromeN, edgeN, firefoxN, iosN, nodeN, safariN)
esbuild-minify ERROR Error: Invalid target: "and_chr90" (valid: esN, chromeN, edgeN, firefoxN, iosN, nodeN, safariN)
This is because esbuild does not support the same targets returned from browserslist.
There are some workarounds on this issue evanw/esbuild#121
The text was updated successfully, but these errors were encountered:
We can probably try something like this to support and_chr and some others https://github.com/nihalgonsalves/esbuild-plugin-browserslist/blob/51c577112819a2cce0afaee7661f2be6b241d56c/src/types.ts#L46
and_chr
Sorry, something went wrong.
is there a workaround for this in the meantime?
You can specify your browserslist now only using specific (supported by esbuild) browsers
To use this workaround, is there an example browserslist query that will give esbuild compatible targets?
No branches or pull requests
I get this error trying to serve vue app
esbuild-minify ERROR Error: Invalid target: "and_chr90" (valid: esN, chromeN, edgeN, firefoxN, iosN, nodeN, safariN)
This is because esbuild does not support the same targets returned from browserslist.
There are some workarounds on this issue evanw/esbuild#121
The text was updated successfully, but these errors were encountered: