Files

7 lines
215 B
Plaintext
Raw Permalink Normal View History

2026-08-14 15:28:57 +08:00
' 启动 Docusaurus 开发服务器(无黑窗口)
Dim shell
Set shell = CreateObject("WScript.Shell")
shell.CurrentDirectory = "D:\projects\my-website"
shell.Run "cmd /c npm start", 0, False
Set shell = Nothing