Browse Source

use local bootstrap, not CDN

pull/1010/head
Lee Dumond 5 years ago
parent
commit
95ac1fe9bd
1 changed files with 2 additions and 5 deletions
  1. +2
    -5
      src/Web/WebStatus/Views/Shared/Error.cshtml

+ 2
- 5
src/Web/WebStatus/Views/Shared/Error.cshtml View File

@ -9,18 +9,15 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<environment names="Development">
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="~/css/site.min.css" type="text/css" />
</environment>
<environment names="Staging,Production">
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.min.css"
asp-fallback-href="~/lib/bootstrap/dist/css/bootstrap.min.css"
asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute" />
<link rel="stylesheet" href="~/css/site.min.css" asp-append-version="true" />
</environment>
</head>
<body>
<div class="container">


Loading…
Cancel
Save