Skip to content

Commit

Permalink
Fix heading levels in URL imports docs. (vercel#31163)
Browse files Browse the repository at this point in the history
To ensure they are semantically accurate.
  • Loading branch information
leerob authored and natew committed Feb 16, 2022
1 parent 397a35b commit 2f3eed7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/api-reference/next.config.js/url-imports.md
Expand Up @@ -45,7 +45,7 @@ These resources will have a `no-cache` entry in the lockfile and will always be

## Examples

#### Skypack
### Skypack

```js
import confetti from 'https://cdn.skypack.dev/canvas-confetti'
Expand All @@ -59,7 +59,7 @@ export default () => {
}
```

#### Static Image Imports
### Static Image Imports

```js
import Image from 'next/image'
Expand All @@ -72,15 +72,15 @@ export default () => (
)
```

#### URLs in CSS
### URLs in CSS

```css
.className {
background: url('https://github.com/vercel/next.js/raw/canary/test/integration/production/public/vercel.png');
}
```

#### Asset Imports
### Asset Imports

```js
import Image from 'next/image'
Expand Down

0 comments on commit 2f3eed7

Please sign in to comment.