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.
nameis the project name, which will be displayed in the terminal titlecwdis the path to the project, supporting paths starting with./,../,~/, or absolute pathsscriptis the script to start the project
