diff --git a/README.md b/README.md index 2574141..e5021e3 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,6 @@ A jekyll-based static blog for my personal usage. Styling originally by [Delan A ``` bundle install -jekyll serve # development -jekyll build # production +bundle exec jekyll serve --config _config.yml,_config_dev.yml +bundle exec jekyll build ``` \ No newline at end of file diff --git a/_config.yml b/_config.yml index ddff2af..1c0f963 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,5 @@ title: Xevion.dev +environment: production email: xevion@xevion.dev baseurl: "" # the subpath of your site, e.g. /blog url: "https://xevion.dev" # the base hostname & protocol for your site, e.g. http://example.com @@ -14,4 +15,5 @@ sass: style: compressed compress_html: ignore: - envs: ["development"] \ No newline at end of file + envs: ["development"] + comments: all \ No newline at end of file diff --git a/_config_dev.yml b/_config_dev.yml new file mode 100644 index 0000000..a11458a --- /dev/null +++ b/_config_dev.yml @@ -0,0 +1 @@ +environment: development \ No newline at end of file