Fix css link typo

This commit is contained in:
Daniel Lautzenheiser 2023-04-12 09:41:15 -04:00
parent e6d3c1535a
commit bc0331483a
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ In this example, we pull the `admin/index.html` file from a public CDN.
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" hef="https://unpkg.com/@staticcms/app@^2.0.0-beta.1/dist/main.css" /> <link rel="stylesheet" href="https://unpkg.com/@staticcms/app@^2.0.0-beta.1/dist/main.css" />
<title>Content Manager</title> <title>Content Manager</title>
</head> </head>
<body> <body>

View File

@ -48,7 +48,7 @@ In `v2.0.0` the apps stylings are not longer bundled into the main javscript fil
**CDN**: **CDN**:
```html ```html
<link rel="stylesheet" hef="https://unpkg.com/@staticcms/app@^2.0.0-beta.1/dist/main.css" /> <link rel="stylesheet" href="https://unpkg.com/@staticcms/app@^2.0.0-beta.1/dist/main.css" />
``` ```
**Bundling**: **Bundling**: