INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
const prod = { | |
ENV: 'prod', | |
BASE_PATH:'/prod/', | |
BASE_URL: 'https://prod.com', | |
API_URL_USERS: 'https://prod.com/users' | |
}; | |
const staging = { | |
ENV: 'staging', | |
BASE_PATH:'/staging/', | |
BASE_URL: 'https://staging.com', |
Soluction - -> chrome://settings/content/cookies -> Allow -> Add: [*.]stackblitz.io
Source: stackblitz/core#162 (comment)
code --install-extension 2gua.rainbow-brackets | |
code --install-extension aaron-bond.better-comments | |
code --install-extension adpyke.codesnap | |
code --install-extension andys8.jest-snippets | |
code --install-extension Angular.ng-template | |
code --install-extension anweber.vscode-httpyac | |
code --install-extension apollographql.vscode-apollo | |
code --install-extension bradgashler.htmltagwrap | |
code --install-extension bradlc.vscode-tailwindcss | |
code --install-extension Cardinal90.multi-cursor-case-preserve |
{ | |
"workbench.iconTheme": "material-icon-theme", | |
// FiraCode | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.tabSize": 2, | |
"editor.detectIndentation": false, | |
"window.zoomLevel": 0, | |
// Enable/disable navigation breadcrumbs | |
"breadcrumbs.enabled": true, |
/* | |
* The default style sheet used to render HTML. | |
* | |
* Copyright (C) 2000 Lars Knoll ([email protected]) | |
* Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. | |
* | |
* This library is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU Library General Public | |
* License as published by the Free Software Foundation; either | |
* version 2 of the License, or (at your option) any later version. |
function updateUrlParameter(uri, key, value) {
// remove the hash part before operating on the uri
var i = uri.indexOf('#');
var hash = i === -1 ? '' : uri.substr(i);
uri = i === -1 ? uri : uri.substr(0, i);
var re = new RegExp("([?&])" + key + "=.*?(&|$)", "i");