{"id":893,"date":"2021-09-07T01:40:31","date_gmt":"2021-09-06T12:40:31","guid":{"rendered":"https:\/\/blog.wiseowls.co.nz\/?p=893"},"modified":"2026-03-08T00:48:39","modified_gmt":"2026-03-07T11:48:39","slug":"azure-static-web-apps-lazy-dev-environment","status":"publish","type":"post","link":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/","title":{"rendered":"Azure Static Web Apps \u2013 Lazy Dev Environment"},"content":{"rendered":"<p>Playing with Static Web Apps is lots of fun. However, setting up a list of required libraries and tools can get a little bit daunting. On top of that, removing it will likely leave a messy residue.<\/p>\n<h2 class=\"wp-block-heading\">Use VS Code Dev containers then<\/h2>\n<p>So, let us assume <a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/wsl\/install-win10\">WSL<\/a> and Docker are already installed (Microsoft should consider shipping these features pre-installed, really). Then we can quickly grab VS Code and spin up a <a href=\"https:\/\/code.visualstudio.com\/docs\/remote\/remote-overview\">development container<\/a>. <\/p>\n<p>Turns out, Microsoft have already provided a very good <a href=\"https:\/\/github.com\/microsoft\/vscode-dev-containers\/tree\/main\/containers\/azure-static-web-apps\">starting point<\/a>. So, all we need to do is: <\/p>\n<ol class=\"wp-block-list\">\n<li>start a blank workspace folder, hit <code>F1<\/code><\/li>\n<li>type &#8220;Add Development Container&#8221; and select the menu item<\/li>\n<\/ol>\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"67\" src=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-5.png\" alt=\"VS Code command palette showing Add Development Container option\" class=\"wp-image-897\" srcset=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-5.png 600w, https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-5-300x34.png 300w\" sizes=\"auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px\" \/><\/figure>\n<ol class=\"wp-block-list\" start=\"3\">\n<li>type something and click &#8220;Show All Definitions&#8221;<\/li>\n<\/ol>\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"602\" height=\"137\" src=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-6.png\" alt=\"VS Code dev container definition list with Show All Definitions option\" class=\"wp-image-898\" srcset=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-6.png 602w, https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-6-300x68.png 300w\" sizes=\"auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px\" \/><\/figure>\n<ol class=\"wp-block-list\" start=\"4\">\n<li>Select &#8220;Azure Static Web Apps&#8221;<\/li>\n<\/ol>\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"599\" height=\"112\" src=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-4.png\" alt=\"Azure Static Web Apps dev container template selection\" class=\"wp-image-896\" srcset=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-4.png 599w, https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-4-300x56.png 300w\" sizes=\"auto, (max-width: 599px) 85vw, 599px\" \/><\/figure>\n<ol class=\"wp-block-list\" start=\"5\">\n<li>Press <code>F1<\/code> once more and run &#8220;Remote-Containers: Reopen Folder in Container&#8221;<\/li>\n<\/ol>\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"595\" height=\"68\" src=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-7.png\" alt=\"VS Code command palette showing Reopen Folder in Container option\" class=\"wp-image-901\" srcset=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-7.png 595w, https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/09\/image-7-300x34.png 300w\" sizes=\"auto, (max-width: 595px) 85vw, 595px\" \/><\/figure>\n<h2 class=\"wp-block-heading\">At the very minimum<\/h2>\n<p>To be valid, Static Web Apps require an <code>index.html<\/code> file. Let&#8217;s assume we&#8217;ve got static frontend sorted. Now we also want to add an API:<\/p>\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">vscode \u279c \/workspaces\/vs-dev-containers-demo $ mkdir api &amp;&amp; cd api\nvscode \u279c \/workspaces\/vs-dev-containers-demo\/api $ func init\nvscode \u279c \/workspaces\/vs-dev-containers-demo\/api $ func new -l C# -t HttpTrigger -n HelloWorld\n\n<\/code><\/pre>\n<p>nothing fancy, but now we can start everything with <code>swa start<\/code>:<\/p>\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">vscode \u279c \/workspaces\/vs-dev-containers-demo $ swa start --api api<\/code><\/pre>\n<p>VS Code would go ahead and download recommended extensions and language packs, so this should just work. <\/p>\n<h2 class=\"wp-block-heading\">We want better dev experience<\/h2>\n<p>And this is where custom tasks and <a href=\"https:\/\/code.visualstudio.com\/Docs\/editor\/debugging#_launch-configurations\">launch configurations<\/a> would come in handy. We want VS Code to run <code>swa<\/code> emulator for us and attach to running instance of Functions:<\/p>\n<pre class=\"wp-block-code\"><code lang=\"json\" class=\"language-json\">{\n  \"version\": \"0.2.0\",\n  \"compounds\": [\n    {\n      \"name\": \"Run Static Web App with API\",\n      \"configurations\": [\"Attach to .NET Functions\", \"Run SWA emulator\"],        \n      \"presentation\": {\n        \"hidden\": false,\n        \"group\": \"\",\n        \"order\": 1\n      }\n    }\n  ],\n  \"configurations\": [\n    {\n      \"name\": \"Attach to .NET Functions\",\n      \"type\": \"coreclr\",\n      \"request\": \"attach\",\n      \"processId\": \"${command:azureFunctions.pickProcess}\",\n      \"presentation\": {\n        \"hidden\": true,\n        \"group\": \"\",\n        \"order\": 2\n      }\n    },\n    {\n      \"name\": \"Run SWA emulator\",\n      \"type\": \"node-terminal\",\n      \"request\": \"launch\",      \n      \"cwd\": \"${workspaceFolder}\",\n      \"command\": \"swa start . --api http:\/\/localhost:7071\",\n      \"serverReadyAction\": {\n        \"pattern\": \"Azure Static Web Apps emulator started at http:\/\/localhost:([0-9]+)\",\n        \"uriFormat\": \"http:\/\/localhost:%s\",\n        \"action\": \"openExternally\"\n      },\n      \"presentation\": {\n        \"hidden\": true,\n        \"group\": \"\",\n        \"order\": 3\n      }\n    }\n  ]  \n}\n\n<\/code><\/pre>\n<p>Save this file under <code>.vscode\/launch.json<\/code>, reopen project folder and hit <code>F5<\/code> to enjoy effect!<\/p>\n<p>Finally, all code should get <a href=\"https:\/\/github.com\/tkhadimullin\/minimal-azure-swa-dev-container\">committed to GitHub<\/a> (<a href=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/08\/06\/azure-static-web-apps-custom-build-and-deployments\/\">refrain from using ADO if you can<\/a>).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Playing with Static Web Apps is lots of fun. However, setting up a list of required libraries and tools can get a little bit daunting. On top of that, removing it will likely leave a messy residue. Use VS Code Dev containers then So, let us assume WSL and Docker are already installed (Microsoft should &hellip; <a href=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Azure Static Web Apps \u2013 Lazy Dev Environment&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":674,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[50],"tags":[48,54],"class_list":["post-893","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud","tag-azure","tag-azure-swa"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Azure Static Web Apps \u2013 Lazy Dev Environment - Timur and associates<\/title>\n<meta name=\"description\" content=\"In this article we&#039;ll try to come up with minimal development environment for quick start with Azure Static Web Apps\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Azure Static Web Apps \u2013 Lazy Dev Environment - Timur and associates\" \/>\n<meta property=\"og:description\" content=\"In this article we&#039;ll try to come up with minimal development environment for quick start with Azure Static Web Apps\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/\" \/>\n<meta property=\"og:site_name\" content=\"Timur and associates\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-06T12:40:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-07T11:48:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/02\/cloud-computing-2001090_1920.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1500\" \/>\n\t<meta property=\"og:image:height\" content=\"396\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"timur\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@TimurKh\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/\"},\"author\":{\"name\":\"timur\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\"},\"headline\":\"Azure Static Web Apps \u2013 Lazy Dev Environment\",\"datePublished\":\"2021-09-06T12:40:31+00:00\",\"dateModified\":\"2026-03-07T11:48:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/\"},\"wordCount\":253,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/cloud-computing-2001090_1920.jpg\",\"keywords\":[\"azure\",\"azure-swa\"],\"articleSection\":[\"Cloud\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/\",\"name\":\"Azure Static Web Apps \u2013 Lazy Dev Environment - Timur and associates\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/cloud-computing-2001090_1920.jpg\",\"datePublished\":\"2021-09-06T12:40:31+00:00\",\"dateModified\":\"2026-03-07T11:48:39+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\"},\"description\":\"In this article we'll try to come up with minimal development environment for quick start with Azure Static Web Apps\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/cloud-computing-2001090_1920.jpg\",\"contentUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/cloud-computing-2001090_1920.jpg\",\"width\":1500,\"height\":396,\"caption\":\"header image, cloud computing\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2021\\\/09\\\/07\\\/azure-static-web-apps-lazy-dev-environment\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Azure Static Web Apps \u2013 Lazy Dev Environment\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#website\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/\",\"name\":\"Timur and associates\",\"description\":\"Notes of an IT contractor\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\",\"name\":\"timur\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"caption\":\"timur\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/TimurKh\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Azure Static Web Apps \u2013 Lazy Dev Environment - Timur and associates","description":"In this article we'll try to come up with minimal development environment for quick start with Azure Static Web Apps","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/","og_locale":"en_US","og_type":"article","og_title":"Azure Static Web Apps \u2013 Lazy Dev Environment - Timur and associates","og_description":"In this article we'll try to come up with minimal development environment for quick start with Azure Static Web Apps","og_url":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/","og_site_name":"Timur and associates","article_published_time":"2021-09-06T12:40:31+00:00","article_modified_time":"2026-03-07T11:48:39+00:00","og_image":[{"width":1500,"height":396,"url":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/02\/cloud-computing-2001090_1920.jpg","type":"image\/jpeg"}],"author":"timur","twitter_card":"summary_large_image","twitter_creator":"@TimurKh","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/#article","isPartOf":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/"},"author":{"name":"timur","@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59"},"headline":"Azure Static Web Apps \u2013 Lazy Dev Environment","datePublished":"2021-09-06T12:40:31+00:00","dateModified":"2026-03-07T11:48:39+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/"},"wordCount":253,"commentCount":0,"image":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/02\/cloud-computing-2001090_1920.jpg","keywords":["azure","azure-swa"],"articleSection":["Cloud"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/","url":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/","name":"Azure Static Web Apps \u2013 Lazy Dev Environment - Timur and associates","isPartOf":{"@id":"https:\/\/blog.wiseowls.co.nz\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/#primaryimage"},"image":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/02\/cloud-computing-2001090_1920.jpg","datePublished":"2021-09-06T12:40:31+00:00","dateModified":"2026-03-07T11:48:39+00:00","author":{"@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59"},"description":"In this article we'll try to come up with minimal development environment for quick start with Azure Static Web Apps","breadcrumb":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/#primaryimage","url":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/02\/cloud-computing-2001090_1920.jpg","contentUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2021\/02\/cloud-computing-2001090_1920.jpg","width":1500,"height":396,"caption":"header image, cloud computing"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2021\/09\/07\/azure-static-web-apps-lazy-dev-environment\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.wiseowls.co.nz\/"},{"@type":"ListItem","position":2,"name":"Azure Static Web Apps \u2013 Lazy Dev Environment"}]},{"@type":"WebSite","@id":"https:\/\/blog.wiseowls.co.nz\/#website","url":"https:\/\/blog.wiseowls.co.nz\/","name":"Timur and associates","description":"Notes of an IT contractor","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.wiseowls.co.nz\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59","name":"timur","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","url":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","caption":"timur"},"sameAs":["https:\/\/x.com\/TimurKh"]}]}},"_links":{"self":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/893","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/comments?post=893"}],"version-history":[{"count":5,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/893\/revisions"}],"predecessor-version":[{"id":1357,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/893\/revisions\/1357"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/media\/674"}],"wp:attachment":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/media?parent=893"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/categories?post=893"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/tags?post=893"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}