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
layer()
@import
Currently esbuild is failing this test: https://github.com/romainmenke/css-import-tests/tree/main/tests/002-sub-features/003-at-layer/018
@import url("green.css") layer; /* valid */ @import url("red.css") layer(); /* must be invalid */
It seems that esbuild treats layer() as valid and transpiles it to:
/* tests/002-sub-features/003-at-layer/018/red.css */ @layer { .box { background-color: red; } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently esbuild is failing this test: https://github.com/romainmenke/css-import-tests/tree/main/tests/002-sub-features/003-at-layer/018
It seems that esbuild treats
layer()
as valid and transpiles it to:The text was updated successfully, but these errors were encountered: