-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
SASS deprecation #3948
Comments
Until 1.0.3 is released you have to disable the deprecations for color-functions & global-builtin. For anyone using Vite: vite.config.ts import {
SassEmbeddedStringOptionsAsync,
} from "vite/types/internal/cssPreprocessorOptions";
const sassOptions: SassEmbeddedStringOptionsAsync = {
silenceDeprecations: ['color-functions', 'global-builtin']
}
export default defineConfig({
...
css: {
preprocessorOptions: {
sass: sassOptions,
}
},
}) |
@unherz failed to work for me but this did: ...
preprocessorOptions: {
scss: sassOptions,
}
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is about Bulma.
Overview of the problem
This is about the Bulma CSS framework
I'm using Bulma version 1.0.2
This is a Sass issue: I'm using sass version 1.77.6
There are similar open issues related to other versions of Bulma, but this is the only one for Bulma 1.0.2
Description
The text was updated successfully, but these errors were encountered: