From b156ff9846f37f92a609221f3a2919d58f2bf46f Mon Sep 17 00:00:00 2001 From: aleidk Date: Wed, 27 Nov 2024 18:50:38 -0300 Subject: [PATCH] chore: add build command --- .justfile | 3 +++ config.toml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/.justfile b/.justfile index a31adbb..ee0b6e0 100644 --- a/.justfile +++ b/.justfile @@ -3,3 +3,6 @@ lint: dev: @zola serve --port 3000 --fast + +build: + @zola build diff --git a/config.toml b/config.toml index 9a6a2d9..46899ea 100644 --- a/config.toml +++ b/config.toml @@ -1,6 +1,8 @@ # The URL the site will be built for base_url = "https://alecodes.page" +output_dir = "dist" + # Whether to automatically compile all Sass files in the sass directory compile_sass = true