카테고리 없음

Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.

Happy Happy 2025. 3. 3. 06:16
728x90

warning while running unit tests

 

Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.

 

I don't use 'sass' on my project. 
I added the below code in vite.config.js and it worked

 

export default defineConfig(({ mode }) => {
...

css: {
    preprocessorOptions: {
        scss: {
            api: 'modern',
        },
    }
},
 ...
})
728x90