Nuxt3

[Nuxt3] DEPRECATION WARNING: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. 해결

서앶인 2024. 12. 24. 15:03

 

 

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

 

 

Nuxt3 프로젝트를 생성하는 중에 만나게된 경고.

바아로 해결해보자.

 

 

 

// nuxt.config.ts

export defaut defineNuxtConfig({
  ...
    
  vite: {
    css: {
      preprocessorOptions: {
        scss: {
          api: "modern-compiler", // or 'modern'
        },
      },
    },
  },
})

 

 

 

 

해당 이슈는 "현재 vite 설정값으로 적용되어 있는 legacy JS API가 앞으로 지원되지 않는다." 이기에,

api의 값만 바꾸면 해결 완료~