fix: Sass legacy JS API warn (#39)

* feat: draggable list & useTableDrag hook

* fix: sass deprecated legacy JS API
This commit is contained in:
Ray.D.Song 2024-09-25 12:33:57 +08:00 committed by GitHub
parent aee3e52f15
commit 367406258c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,5 +30,12 @@ export default defineConfig(({ mode }) => {
optimizeDeps: {
include: ['echarts', 'md-editor-v3', 'quill'],
},
css: {
preprocessorOptions: {
scss: {
api: 'modern',
},
},
},
}
})