feat: use relative urls
This commit is contained in:
		@@ -1,4 +1,4 @@
 | 
			
		||||
baseurl = "/"
 | 
			
		||||
baseurl = "https://doks.netlify.app/"
 | 
			
		||||
canonifyURLs = false
 | 
			
		||||
disableAliases = true
 | 
			
		||||
disableHugoGeneratorInject = true
 | 
			
		||||
@@ -42,6 +42,11 @@ isPlainText = true
 | 
			
		||||
noUgly = true
 | 
			
		||||
rel  = "sitemap"
 | 
			
		||||
 | 
			
		||||
[caches]
 | 
			
		||||
  [caches.getjson]
 | 
			
		||||
    dir = ":cacheDir/:project"
 | 
			
		||||
    maxAge = "10s"
 | 
			
		||||
 | 
			
		||||
[markup]
 | 
			
		||||
  [markup.goldmark]
 | 
			
		||||
    [markup.goldmark.extensions]
 | 
			
		||||
 
 | 
			
		||||
@@ -1,2 +1 @@
 | 
			
		||||
baseurl = "https://doks-next.netlify.app/"
 | 
			
		||||
canonifyURLs = true
 | 
			
		||||
canonifyURLs = false
 | 
			
		||||
 
 | 
			
		||||
@@ -1,2 +1 @@
 | 
			
		||||
baseurl = "https://doks.netlify.app/"
 | 
			
		||||
canonifyURLs = true
 | 
			
		||||
canonifyURLs = false
 | 
			
		||||
 
 | 
			
		||||
@@ -1,11 +1,11 @@
 | 
			
		||||
{{ if eq (hugo.Environment) "development" -}}
 | 
			
		||||
  {{ $options := (dict "targetPath" "main.css" "enableSourceMap" true "includePaths" (slice "node_modules")) -}}
 | 
			
		||||
  {{ $css := resources.Get "scss/app.scss" | toCSS $options -}}
 | 
			
		||||
  <link rel="stylesheet" href="{{ $css.Permalink }}">
 | 
			
		||||
  <link rel="stylesheet" href="{{ $css.Permalink | relURL }}">
 | 
			
		||||
{{ else -}}
 | 
			
		||||
  {{ $options := (dict "targetPath" "main.css" "outputStyle" "compressed" "includePaths" (slice "node_modules")) -}}
 | 
			
		||||
  {{ $css := resources.Get "scss/app.scss" | toCSS $options | postCSS (dict "config" "config/postcss.config.js") -}}
 | 
			
		||||
  {{ $secureCSS := $css | resources.Fingerprint "sha512" -}}
 | 
			
		||||
  <link rel="stylesheet" href="{{ $secureCSS.Permalink }}" integrity="{{ $secureCSS.Data.Integrity }}" crossorigin="anonymous">
 | 
			
		||||
  <link rel="stylesheet" href="{{ $secureCSS.Permalink | relURL }}" integrity="{{ $secureCSS.Data.Integrity }}" crossorigin="anonymous">
 | 
			
		||||
{{ end -}}
 | 
			
		||||
<noscript><style>img.lazyload { display: none; }</style></noscript>
 | 
			
		||||
		Reference in New Issue
	
	Block a user