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
More info and automated migrator: https://sass-lang.com/d/import
╷ 1 │ @import "@/styles/var.scss"; │ ^^^^^^^^^^^^^^^^^^^ ╵ src/layouts/components/Tabs/components/MoreButton.vue 1:9 root stylesheet
Deprecation Warning: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.
╷ 2 │ @import "../index.scss"; │ ^^^^^^^^^^^^^^^ ╵ src/layouts/components/Tabs/components/MoreButton.vue 2:9 root stylesheet
The text was updated successfully, but these errors were encountered:
sass 1.80 不再支持 @import 需要使用 `@use’ 例如@use "@/variables.scss";
Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api
修改方法 vue.config.js: export default defineConfig({ ... css: { preprocessorOptions: { scss: { api: 'modern-compiler', // 修改api调用方式 }, }, }, ... });
Sorry, something went wrong.
api: 'modern-compiler', // 修改api调用方式
这也不生效呢。。。
No branches or pull requests
More info and automated migrator: https://sass-lang.com/d/import
╷
1 │ @import "@/styles/var.scss";
│ ^^^^^^^^^^^^^^^^^^^
╵
src/layouts/components/Tabs/components/MoreButton.vue 1:9 root stylesheet
Deprecation Warning: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0.
More info and automated migrator: https://sass-lang.com/d/import
╷
2 │ @import "../index.scss";
│ ^^^^^^^^^^^^^^^
╵
src/layouts/components/Tabs/components/MoreButton.vue 2:9 root stylesheet
The text was updated successfully, but these errors were encountered: