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
3.0.0-beta.3
https://github.com/you06/vue-cli-css-issue
The following css is in https://github.com/you06/vue-cli-css-issue/blob/master/src/components/HelloWorld.vue#L19
background-image: linear-gradient(top, #ffffff, #2196F3);
running yarn build, check the style from chrome, webkit compatible is auto added
yarn build
background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#2196F3)); background-image: linear-gradient(top, #ffffff, #2196F3);
running yarn serve, check the style from chrome, there is no webkit compatible
yarn serve
I think the serve and build script should get the same output.
The css output is different.
The text was updated successfully, but these errors were encountered:
Can't reproduce... the webkit prefixed version is there for me with yarn serve as well.
Sorry, something went wrong.
Try yarn build, and open dist/index.html.
dist/index.html
Sorry I made a mistake, no webkit prefixed in yarn build instead of yarn serve.
No branches or pull requests
Version
3.0.0-beta.3
Reproduction link
https://github.com/you06/vue-cli-css-issue
Steps to reproduce
The following css is in https://github.com/you06/vue-cli-css-issue/blob/master/src/components/HelloWorld.vue#L19
running
yarn build
, check the style from chrome, webkit compatible is auto addedrunning
yarn serve
, check the style from chrome, there is no webkit compatibleWhat is expected?
I think the serve and build script should get the same output.
What is actually happening?
The css output is different.
The text was updated successfully, but these errors were encountered: