Add development server

This commit is contained in:
Zoey 2021-08-18 13:49:50 -07:00
parent 04bddee78c
commit 2032d86daa
11 changed files with 1497 additions and 42 deletions

11
.vscode/tasks.json vendored
View file

@ -3,13 +3,20 @@
"tasks": [
{
"type": "cargo",
"command": "run",
"command": "watch",
"args": ["-x", "run -- serve"],
"problemMatcher": ["$rustc"],
"label": "rust: cargo run",
"label": "dev serve site",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "cargo",
"command": "run",
"problemMatcher": ["$rustc"],
"label": "build site"
}
]
}