Skip to content
当前有符合你浏览器所设置语言的版本,是否前往zh-CN版本的网站?
There is a version suitable for your browser's language settings. Would you like to go to the zh-CN language of the site?
HomeDocument

VS Code Link

H1

You can link your Milkio project with other projects. When you start Milkio, VS Code will open multiple terminals simultaneously, launching the projects you have associated with.

Configuration

Add the [link] configuration to /milkio.toml.

[link]
projects = [
{ name = 'YourViteProject', cwd = '../your-project-path', script = 'bun run dev' },
]

projects is the list of projects you are linking. You can add multiple projects.

  • name is the project name, which will be displayed in the terminal title
  • cwd is the path to the project, supporting paths starting with ./, ../, ~/, or absolute paths
  • script is the script to start the project