-
Notifications
You must be signed in to change notification settings - Fork 12k
Autoprefixer Not Working on Serve and Build #26366
New issue
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
Comments
In this case, Esbuild is not prefixing this particular property. |
Experiencing a similar problem but with the |
This not just mask-composite. This property is an example. Also does not work on mask. |
the same. are there any updates? |
It seems that some properties are actually being handled. From a brand new angular project I obtained the following results when running in background: linear-gradient(to right, white, gray);
width: stretch;
user-select: none; out (when inspecting the element) background: linear-gradient(to right, white, gray);
width: stretch;
-webkit-user-select: none;
user-select: none; |
The esbuild pipeline does not use autoprefixer, instead it relies on esbuild do the the vendor prefixing. In the case you are experiencing a property or value that is not being vendor prefixed correctly. Please feel free to file an issue directly with https://github.com/evanw/esbuild. |
Closed via #26440 |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Command
build, serve
Is this a regression?
The previous version in which this bug was not present was
16.0.2
Description
Autoprefixer not working on scss compiler. For example:
In component.scss file;
mask-composite: exclude;
On chromium based browser says;
Invalid property name.
In version 16, it also added
-webkit
and-moz
version of properties.Minimal Reproduction
This issue occurs when
ng serve
andng build
My
angular.json
architect.buildException or Error
No response
Your Environment
Anything else relevant?
Package Manager:
npm
OS:
MacOS
Browser:
Arc Browser (Chromium based)
,Mozilla Firefox Developer Edition
,Safari
etc.The text was updated successfully, but these errors were encountered: