7 lines
215 B
Plaintext
7 lines
215 B
Plaintext
' 启动 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
|