Skip to content

Commit b48a3a6

Browse files
authored
docs(stackblitz): optimize startup speed (#5859)
* docs(stackblitz): use pnpm * docs(stackblitz): optimize startup speed
1 parent c8bcbfd commit b48a3a6

File tree

2 files changed

+3
-3
lines changed
  • packages
    • tdesign-vue-next-chat/site/src/components/stackblitz
    • tdesign-vue-next/site/src/components/stackblitz

2 files changed

+3
-3
lines changed

packages/tdesign-vue-next-chat/site/src/components/stackblitz/content.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export const styleContent = `
4747
export const stackblitzRc = `
4848
{
4949
"installDependencies": false,
50-
"startCommand": "yarn install && yarn dev"
50+
"startCommand": "pnpm install && pnpm dev"
5151
}
5252
`;
5353

packages/tdesign-vue-next/site/src/components/stackblitz/content.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ export const styleContent = `
7272

7373
export const stackblitzRc = `
7474
{
75-
"installDependencies": true,
76-
"startCommand": "npm run dev"
75+
"installDependencies": false,
76+
"startCommand": "pnpm install && pnpm dev"
7777
}
7878
`;
7979

0 commit comments

Comments
 (0)