From bfc5b16c6d836ffbefa782d874122c01bf44e055 Mon Sep 17 00:00:00 2001 From: enpitsulin Date: Tue, 26 Oct 2021 21:09:34 +0800 Subject: [PATCH] =?UTF-8?q?fix(cli):=20=E9=94=99=E8=AF=AF=E7=9A=84?= =?UTF-8?q?=E7=9B=B4=E6=8E=A5=E5=BC=95=E5=85=A5less=E6=96=87=E4=BB=B6=20(#?= =?UTF-8?q?9725)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/vant-cli/src/compiler/gen-site-mobile-shared.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/vant-cli/src/compiler/gen-site-mobile-shared.ts b/packages/vant-cli/src/compiler/gen-site-mobile-shared.ts index b64a0fbaf..cd1496e84 100644 --- a/packages/vant-cli/src/compiler/gen-site-mobile-shared.ts +++ b/packages/vant-cli/src/compiler/gen-site-mobile-shared.ts @@ -9,6 +9,7 @@ import { smartOutputFile, normalizePath, } from '../common'; +import { CSS_LANG } from '../common/css'; type DemoItem = { name: string; @@ -67,7 +68,7 @@ function genCode(components: string[]) { })) .filter((item) => existsSync(item.path)); - return `import './package-style.less'; + return `import './package-style.${CSS_LANG}'; ${genImports(demos)} ${genExports(demos)}