mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-24 10:20:19 +08:00
7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
import { renderSync } from 'sass';
|
|
|
|
export async function compileSass(filePath: string) {
|
|
const { css } = renderSync({ file: filePath });
|
|
return css;
|
|
}
|