Deprecation Warning: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.

2024-09-01

警告メッセージ
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

解決法

nuxt.config.ts
 vite: {
    css: {
      preprocessorOptions: {
        scss: {
          api: "modern-compiler",
        },
      },
    },
  },