add gatsby

This commit is contained in:
2021-05-30 21:53:11 -07:00
parent 3b841f5fb8
commit b3fd881c6e
9 changed files with 43183 additions and 9 deletions

19
.vscode/tasks.json vendored
View File

@@ -1,13 +1,16 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"version": "2.0.0",
"command": "gulp",
"isShellCommand": true,
"tasks": [{
"taskName": "default",
"isBuildCommand": true,
"showOutput": "always",
"isBackground": true
}]
"tasks": [
{
"label": "default",
"type": "gulp",
"task": "default",
"isBackground": true,
"problemMatcher": [],
"group": "build"
}
]
}