{"id":27145,"date":"2024-11-15T10:13:17","date_gmt":"2024-11-15T09:13:17","guid":{"rendered":"https:\/\/www.angulararchitects.io\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/"},"modified":"2025-04-06T08:42:17","modified_gmt":"2025-04-06T06:42:17","slug":"how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings","status":"publish","type":"post","link":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/","title":{"rendered":"How to disable the Angular v19&#8217;s sass compiler deprecation warnings"},"content":{"rendered":"<p>During the renaissance of the framework (beginning with <em>Angular v15<\/em> and still ongoing \u2013 I'd say), not much has changed in the way most of us style our <em>Angular<\/em> apps. While <a href=\"https:\/\/tailwindcss.com\/docs\/guides\/angular\"><strong>Tailwind<\/strong><\/a> has gained popularity within the web community, many <em>Angular<\/em> apps still are styled in the traditional but well established way of using Sass\/SCSS, with global class-based styles in <code>styles.scss<\/code> and component-based styles in <code>[name].component.scss<\/code>.<\/p>\n<p>Additionally, many developers continue to use frontend frameworks like <a href=\"https:\/\/getbootstrap.com\/\"><strong>Bootstrap<\/strong><\/a> - not always in the latest v5. Although this approach might not be cutting-edge, I think it's still an efficient way to achieve solid results, especially if your app's load performance isn\u2019t a critical concern (e.g., for internal apps where employees have infinite time and patience). It can be particularly practical if you\u2019re already familiar with \u2013 let's say Bootstrap.<\/p>\n<h2>Angular v19<\/h2>\n<p>If you're updating one of these <em>Angular<\/em> apps to the release candidate of <em>Angular v19<\/em> with the following command<\/p>\n<pre><code class=\"language-bash\">ng update @angular\/cli@next @angular\/core@next<\/code><\/pre>\n<p>you may encounter a ton of deprecation warnings from the Sass compiler when serving or building your <em>Angular<\/em> app.<\/p>\n<p>The compiler output might look something like this:<\/p>\n<pre><code>[WARNING] Deprecation [plugin angular-sass]\n\n    [...]_variables.scss:79:29:\n      LN \u2502 $dark-color: darken($color, 10%) !default;\n         \u2575              ^\n\ndarken() is deprecated. Suggestions:\n\ncolor.scale($color, $lightness: -17.0568561873%)\ncolor.adjust($color, $lightness: -10%)\n\nMore info: https:\/\/sass-lang.com\/d\/color-functions\n\nThe plugin &quot;angular-sass&quot; was triggered by this import<\/code><\/pre>\n<p>So far, numerous <em>Angular<\/em> apps I\u2019ve tested have shown these warnings. Although I\u2019ve mostly ignored them until now, I have a new <a href=\"https:\/\/www.angulararchitects.io\/en\/training\/angular-best-practices\/\"><strong>Angular Best Practices Workshop<\/strong><\/a> coming up on November 18th, and I wanted to eliminate these warnings \u2013 at least temporarily.<\/p>\n<h3>Sass Compiler Update in Angular v19<\/h3>\n<p>After some research, I found that the issue is due to the <em>Angular<\/em> Sass compiler dependency being updated from version &quot;1.77.6&quot; to &quot;1.80.6&quot;.<\/p>\n<p>Through some investigation and a helpful tip from ma man <a href=\"https:\/\/github.com\/JeanMech\">Matthieu Riegler<\/a>, I learned that <em>Angular v19<\/em> release candidate already ships an option in the Sass (pre-)compiler settings configuration to address this exact problem.<\/p>\n<h2>Disabling the warnings in angular.json<\/h2>\n<p>Three weeks ago, <a href=\"https:\/\/github.com\/alan-agius4\">Alan Agius<\/a> implemented a feature allowing developers to silence these deprecation warnings.<\/p>\n<p>To do this, add the following configuration to your <code>angular.json<\/code> (or <code>project.json<\/code> if you\u2019re using an Nx monorepo):<\/p>\n<pre><code class=\"language-json\">&quot;architect&quot;: {\n  &quot;build&quot;: {\n    &quot;options&quot;: {\n      &quot;stylePreprocessorOptions&quot;: {\n        &quot;sass&quot;: {\n          &quot;silenceDeprecations&quot;: [&quot;mixed-decls&quot;, &quot;color-functions&quot;, &quot;global-builtin&quot;, &quot;import&quot;]\n        }\n      }\n    }\n  }\n},<\/code><\/pre>\n<p>This addition should silence all newly introduced deprecation warnings \ud83e\udd2b<\/p>\n<p>However, keep in mind that this is a temporary fix until the underlying causes can be resolved \ud83d\ude0f<\/p>\n<h2>Workshops<\/h2>\n<p>For those who want to dive deeper into <em>Angular<\/em>, we offer a range of workshops - both English and German:<\/p>\n<ul>\n<li><a href=\"https:\/\/www.angulararchitects.io\/en\/training\/angular-best-practices\/\"><strong>Best Practices Workshop, Nov. 18th to 20th<\/strong><\/a> \ud83d\udcc8<\/li>\n<li><a href=\"https:\/\/www.angulararchitects.io\/en\/training\/angular-accessibility-workshop\/\"><strong>Accessibility Workshop, Dec. 12th to 13th<\/strong><\/a> \u267f<\/li>\n<li><a href=\"https:\/\/www.angulararchitects.io\/en\/training\/angular-performance-optimization-workshop\/\"><strong>Performance Workshop, Dec. 16th to 18th<\/strong><\/a> \ud83d\ude80<\/li>\n<li><a href=\"https:\/\/www.angulararchitects.io\/en\/training\/angular-styling-workshop\/\"><strong>NG Styling Workshop<\/strong><\/a> \ud83c\udfa8<\/li>\n<\/ul>\n<p>This blog post was written by <a href=\"https:\/\/alex.thalhammer.name\">Alexander Thalhammer<\/a>. Follow me on <a href=\"https:\/\/at.linkedin.com\/in\/thalhammer\">Linkedin<\/a>, <a href=\"https:\/\/twitter.com\/LX_T\">X<\/a> or <a href=\"https:\/\/github.com\/L-X-T\">giThub<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>During the renaissance of the framework (beginning with Angular v15 and still ongoing \u2013 I&#8217;d say), not much has changed in the way most of us style our Angular apps. While Tailwind has gained popularity within the web community, many Angular apps still are styled in the traditional but well established way of using Sass\/SCSS, [&hellip;]<\/p>\n","protected":false},"author":21,"featured_media":27144,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_price":"","_stock":"","_tribe_ticket_header":"","_tribe_default_ticket_provider":"","_ticket_start_date":"","_ticket_end_date":"","_tribe_ticket_show_description":"","_tribe_ticket_show_not_going":false,"_tribe_ticket_use_global_stock":"","_tribe_ticket_global_stock_level":"","_global_stock_mode":"","_global_stock_cap":"","_tribe_rsvp_for_event":"","_tribe_ticket_going_count":"","_tribe_ticket_not_going_count":"","_tribe_tickets_list":"[]","_tribe_ticket_has_attendee_info_fields":false,"footnotes":""},"categories":[18],"tags":[],"class_list":["post-27145","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to disable the Angular v19&#039;s sass compiler deprecation warnings - ANGULARarchitects<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to disable the Angular v19&#039;s sass compiler deprecation warnings - ANGULARarchitects\" \/>\n<meta property=\"og:description\" content=\"During the renaissance of the framework (beginning with Angular v15 and still ongoing \u2013 I&#039;d say), not much has changed in the way most of us style our Angular apps. While Tailwind has gained popularity within the web community, many Angular apps still are styled in the traditional but well established way of using Sass\/SCSS, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/\" \/>\n<meta property=\"og:site_name\" content=\"ANGULARarchitects\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-15T09:13:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-06T06:42:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2024\/11\/shutterstock_2430755901.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"570\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Alexander Thalhammer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LX_T\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alexander Thalhammer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/\"},\"author\":{\"name\":\"Alexander Thalhammer\",\"@id\":\"https:\/\/www.angulararchitects.io\/en\/#\/schema\/person\/eefb0cd4d115dfd406a02b6dbc760d45\"},\"headline\":\"How to disable the Angular v19&#8217;s sass compiler deprecation warnings\",\"datePublished\":\"2024-11-15T09:13:17+00:00\",\"dateModified\":\"2025-04-06T06:42:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/\"},\"wordCount\":431,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.angulararchitects.io\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2024\/11\/shutterstock_2430755901.jpg\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/\",\"url\":\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/\",\"name\":\"How to disable the Angular v19's sass compiler deprecation warnings - ANGULARarchitects\",\"isPartOf\":{\"@id\":\"https:\/\/www.angulararchitects.io\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2024\/11\/shutterstock_2430755901.jpg\",\"datePublished\":\"2024-11-15T09:13:17+00:00\",\"dateModified\":\"2025-04-06T06:42:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#primaryimage\",\"url\":\"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2024\/11\/shutterstock_2430755901.jpg\",\"contentUrl\":\"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2024\/11\/shutterstock_2430755901.jpg\",\"width\":1000,\"height\":570},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.angulararchitects.io\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to disable the Angular v19&#8217;s sass compiler deprecation warnings\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.angulararchitects.io\/en\/#website\",\"url\":\"https:\/\/www.angulararchitects.io\/en\/\",\"name\":\"ANGULARarchitects\",\"description\":\"AngularArchitects.io\",\"publisher\":{\"@id\":\"https:\/\/www.angulararchitects.io\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.angulararchitects.io\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.angulararchitects.io\/en\/#organization\",\"name\":\"ANGULARarchitects\",\"alternateName\":\"SOFTWAREarchitects\",\"url\":\"https:\/\/www.angulararchitects.io\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.angulararchitects.io\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2023\/07\/AA-Logo-RGB-horizontal-inside-knowledge-black.svg\",\"contentUrl\":\"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2023\/07\/AA-Logo-RGB-horizontal-inside-knowledge-black.svg\",\"width\":644,\"height\":216,\"caption\":\"ANGULARarchitects\"},\"image\":{\"@id\":\"https:\/\/www.angulararchitects.io\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/github.com\/angular-architects\",\"https:\/\/www.linkedin.com\/company\/angular-architects\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.angulararchitects.io\/en\/#\/schema\/person\/eefb0cd4d115dfd406a02b6dbc760d45\",\"name\":\"Alexander Thalhammer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.angulararchitects.io\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/23f1b6f9b1ee7d04247b8320851762347d56c76b1537d100d07390d6d919b78d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/23f1b6f9b1ee7d04247b8320851762347d56c76b1537d100d07390d6d919b78d?s=96&d=mm&r=g\",\"caption\":\"Alexander Thalhammer\"},\"sameAs\":[\"https:\/\/x.com\/LX_T\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to disable the Angular v19's sass compiler deprecation warnings - ANGULARarchitects","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:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/","og_locale":"en_US","og_type":"article","og_title":"How to disable the Angular v19's sass compiler deprecation warnings - ANGULARarchitects","og_description":"During the renaissance of the framework (beginning with Angular v15 and still ongoing \u2013 I'd say), not much has changed in the way most of us style our Angular apps. While Tailwind has gained popularity within the web community, many Angular apps still are styled in the traditional but well established way of using Sass\/SCSS, [&hellip;]","og_url":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/","og_site_name":"ANGULARarchitects","article_published_time":"2024-11-15T09:13:17+00:00","article_modified_time":"2025-04-06T06:42:17+00:00","og_image":[{"width":1000,"height":570,"url":"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2024\/11\/shutterstock_2430755901.jpg","type":"image\/jpeg"}],"author":"Alexander Thalhammer","twitter_card":"summary_large_image","twitter_creator":"@LX_T","twitter_misc":{"Written by":"Alexander Thalhammer","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#article","isPartOf":{"@id":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/"},"author":{"name":"Alexander Thalhammer","@id":"https:\/\/www.angulararchitects.io\/en\/#\/schema\/person\/eefb0cd4d115dfd406a02b6dbc760d45"},"headline":"How to disable the Angular v19&#8217;s sass compiler deprecation warnings","datePublished":"2024-11-15T09:13:17+00:00","dateModified":"2025-04-06T06:42:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/"},"wordCount":431,"commentCount":0,"publisher":{"@id":"https:\/\/www.angulararchitects.io\/en\/#organization"},"image":{"@id":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#primaryimage"},"thumbnailUrl":"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2024\/11\/shutterstock_2430755901.jpg","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/","url":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/","name":"How to disable the Angular v19's sass compiler deprecation warnings - ANGULARarchitects","isPartOf":{"@id":"https:\/\/www.angulararchitects.io\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#primaryimage"},"image":{"@id":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#primaryimage"},"thumbnailUrl":"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2024\/11\/shutterstock_2430755901.jpg","datePublished":"2024-11-15T09:13:17+00:00","dateModified":"2025-04-06T06:42:17+00:00","breadcrumb":{"@id":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#primaryimage","url":"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2024\/11\/shutterstock_2430755901.jpg","contentUrl":"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2024\/11\/shutterstock_2430755901.jpg","width":1000,"height":570},{"@type":"BreadcrumbList","@id":"https:\/\/www.angulararchitects.io\/en\/blog\/how-to-disable-the-angular-v19s-sass-compiler-deprecation-warnings\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.angulararchitects.io\/en\/"},{"@type":"ListItem","position":2,"name":"How to disable the Angular v19&#8217;s sass compiler deprecation warnings"}]},{"@type":"WebSite","@id":"https:\/\/www.angulararchitects.io\/en\/#website","url":"https:\/\/www.angulararchitects.io\/en\/","name":"ANGULARarchitects","description":"AngularArchitects.io","publisher":{"@id":"https:\/\/www.angulararchitects.io\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.angulararchitects.io\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.angulararchitects.io\/en\/#organization","name":"ANGULARarchitects","alternateName":"SOFTWAREarchitects","url":"https:\/\/www.angulararchitects.io\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.angulararchitects.io\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2023\/07\/AA-Logo-RGB-horizontal-inside-knowledge-black.svg","contentUrl":"https:\/\/www.angulararchitects.io\/wp-content\/uploads\/2023\/07\/AA-Logo-RGB-horizontal-inside-knowledge-black.svg","width":644,"height":216,"caption":"ANGULARarchitects"},"image":{"@id":"https:\/\/www.angulararchitects.io\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/github.com\/angular-architects","https:\/\/www.linkedin.com\/company\/angular-architects\/"]},{"@type":"Person","@id":"https:\/\/www.angulararchitects.io\/en\/#\/schema\/person\/eefb0cd4d115dfd406a02b6dbc760d45","name":"Alexander Thalhammer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.angulararchitects.io\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/23f1b6f9b1ee7d04247b8320851762347d56c76b1537d100d07390d6d919b78d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/23f1b6f9b1ee7d04247b8320851762347d56c76b1537d100d07390d6d919b78d?s=96&d=mm&r=g","caption":"Alexander Thalhammer"},"sameAs":["https:\/\/x.com\/LX_T"]}]}},"_links":{"self":[{"href":"https:\/\/www.angulararchitects.io\/en\/wp-json\/wp\/v2\/posts\/27145","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.angulararchitects.io\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.angulararchitects.io\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.angulararchitects.io\/en\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/www.angulararchitects.io\/en\/wp-json\/wp\/v2\/comments?post=27145"}],"version-history":[{"count":2,"href":"https:\/\/www.angulararchitects.io\/en\/wp-json\/wp\/v2\/posts\/27145\/revisions"}],"predecessor-version":[{"id":29396,"href":"https:\/\/www.angulararchitects.io\/en\/wp-json\/wp\/v2\/posts\/27145\/revisions\/29396"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.angulararchitects.io\/en\/wp-json\/wp\/v2\/media\/27144"}],"wp:attachment":[{"href":"https:\/\/www.angulararchitects.io\/en\/wp-json\/wp\/v2\/media?parent=27145"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.angulararchitects.io\/en\/wp-json\/wp\/v2\/categories?post=27145"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.angulararchitects.io\/en\/wp-json\/wp\/v2\/tags?post=27145"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}