Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy Cai <jimmehcai@gmail.com>2020-09-06 14:23:57 +0300
committerJimmy Cai <jimmehcai@gmail.com>2020-09-06 14:23:57 +0300
commit06c724c14150586632f9f3604ad498ed135e2c89 (patch)
treee8ba20338318fefbc1abd533d28625145a4ff18d /netlify.toml
parente176e298117894156158e2851ce4741e26661a77 (diff)
fix(netlify): add ending slash to baseURL
Diffstat (limited to 'netlify.toml')
-rw-r--r--netlify.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/netlify.toml b/netlify.toml
index 441d7af..0839200 100644
--- a/netlify.toml
+++ b/netlify.toml
@@ -6,13 +6,13 @@
HUGO_THEME = "repo"
[context.production]
- command = "cd exampleSite && hugo --gc --themesDir ../.. -b ${URL}"
+ command = "cd exampleSite && hugo --gc --themesDir ../.. -b ${URL}/"
[context.production.environment]
HUGO_ENV = "production"
[context.branch-deploy]
- command = "cd exampleSite && hugo --gc --themesDir ../.. -b ${DEPLOY_PRIME_URL}"
+ command = "cd exampleSite && hugo --gc --themesDir ../.. -b ${DEPLOY_PRIME_URL}/"
[context.deploy-preview]
- command = "cd exampleSite && hugo --gc --themesDir ../.. -b ${DEPLOY_PRIME_URL}" \ No newline at end of file
+ command = "cd exampleSite && hugo --gc --themesDir ../.. -b ${DEPLOY_PRIME_URL}/" \ No newline at end of file