From 294f445e0a0bac1355a4a7bd5c56977982a82f93 Mon Sep 17 00:00:00 2001 From: Jimmy Cai Date: Sun, 13 Sep 2020 10:51:31 +0200 Subject: [PATCH] doc(config.toml): change baseurl to https://example.com Following Hugo theme showcase guideline --- exampleSite/config.toml | 2 +- netlify.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index cd42134..64039df 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -1,4 +1,4 @@ -baseurl = "https://theme-stack.jimmycai.com/" +baseurl = "https://example.com" languageCode = "en-us" theme = "hugo-theme-stack" paginate = 5 diff --git a/netlify.toml b/netlify.toml index c71e3cb..55ebd33 100644 --- a/netlify.toml +++ b/netlify.toml @@ -6,12 +6,12 @@ HUGO_THEME = "repo" [context.production] - command = "cd exampleSite && hugo --gc --themesDir ../.." + 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