1
0
mirror of https://github.com/mastodon/documentation synced 2025-04-11 22:56:17 +02:00
Renaud Chaput d356c6caac
Switch hosting to Vercel (#1113)
* Fix URLs to work when `baseURL` is in a sub-directory

* Use `RelPermalink` to not have assets loaded from `baseUrl`

* Add `.vercel` to gitignore

* Remove deploy Github Action, we are now using Vercel
2022-12-21 06:26:37 +01:00

13 lines
423 B
HTML

{{ .Hugo.Generator }}
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="shortcut icon" type="image/png" href="/favicon.ico"/>
{{ $css := resources.Get "style.scss" | toCSS | minify | fingerprint }}
<link rel='stylesheet' href='{{ $css.RelPermalink }}'>
{{ $js := resources.Get "main.js" | minify | fingerprint }}
<script src='{{ $js.RelPermalink }}' async></script>