Skip to content

Commit

Permalink
docs: add more requirements to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Sep 16, 2022
1 parent 32506a2 commit 19e1ec8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,27 @@ themeConfig:
---
```

This themes requires additional packages beside the theme itself and the above
configuration:

```console
npm install vite-svg-loader qrious
```

Finally you also got to provide a customized `vite.config.js` as this is
required to load the used SVGs:

```ts
import { defineConfig } from 'vite'
import svgLoader from 'vite-svg-loader'

export default defineConfig({
plugins: [
svgLoader(),
],
})
```

## Examples

### Intro
Expand Down

0 comments on commit 19e1ec8

Please sign in to comment.