58 lines
1.2 KiB
JSON
58 lines
1.2 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "npm: dev server",
|
|
"type": "npm",
|
|
"script": "dev",
|
|
"path": "app",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/app"
|
|
},
|
|
"problemMatcher": {
|
|
"owner": "vite-dev",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^.*$",
|
|
"file": 0,
|
|
"location": 0,
|
|
"message": 0
|
|
}
|
|
],
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": ">.* dev",
|
|
"endsPattern": "Local:\\s+http://localhost:5173/"
|
|
}
|
|
},
|
|
"isBackground": true
|
|
},
|
|
{
|
|
"label": "npm: preview server",
|
|
"type": "npm",
|
|
"script": "preview",
|
|
"path": "app",
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/app"
|
|
},
|
|
"problemMatcher": {
|
|
"owner": "vite-preview",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^.*$",
|
|
"file": 0,
|
|
"location": 0,
|
|
"message": 0
|
|
}
|
|
],
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": ">.* preview",
|
|
"endsPattern": "Local:\\s+http://localhost:4173/"
|
|
}
|
|
},
|
|
"isBackground": true
|
|
}
|
|
]
|
|
}
|