#30 Prepare for deploy. Images need to be public, added swa-cli. Defined VITE_API_URL to the env var for azure

This commit is contained in:
Dominic Villemure
2024-04-21 13:52:40 -04:00
parent d812b15c8f
commit 5d37cefec1
63 changed files with 57 additions and 36 deletions

13
swa-cli.config.json Normal file
View File

@@ -0,0 +1,13 @@
{
"$schema": "https://aka.ms/azure/static-web-apps-cli/schema",
"configurations": {
"taim-ui": {
"appLocation": ".",
"outputLocation": "dist",
"appBuildCommand": "npm run build",
"run": "npm run dev",
"appDevserverUrl": "https://hutopy.azurewebsites.net",
"apiDevserverUrl": "https://hutopy.azurewebsites.net"
}
}
}