2025-07-25

This commit is contained in:
2025-07-25 09:40:05 -05:00
parent fb35c70ef0
commit 55c03bcafb
19 changed files with 5388 additions and 32 deletions

View File

@@ -17,6 +17,16 @@
"console": "integratedTerminal",
"envFile": "${workspaceFolder}/.env"
},
{
"name": "Start Webpack Dev Server",
"type": "node",
"request": "launch",
"program": "npm",
"args": ["run", "dev", "--config", "${workspaceFolder}/frontend/webpack.config.js"],
"cwd": "${workspaceFolder}/frontend",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"name": "Launch Chrome",
"type": "chrome",
@@ -36,11 +46,13 @@
"console": "integratedTerminal"
}
],
"compounds":[{
"compounds": [
{
"name": "Django + Chrome",
"configurations": ["Run Django Server", "Launch Chrome"],
"type": "compound"
}]
}
]
},
"tasks": {
"version": "2.0.0",
@@ -112,11 +124,12 @@
"other": true,
"comments": true,
"strings": true
}
},
},
"files.associations": {
"*.dj.html": "django-html"
},
"html.autoClosingTags": true,
"emmet.includeLanguages": {
"django-html": "html"
}