aboutsummaryrefslogtreecommitdiff
path: root/build.zig
blob: e755877dbc6281b96f4dd36243919e2adb4b5792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const std = @import("std");
const zine = @import("zine");

pub fn build(b: *std.Build) !void {
    zine.website(b, .{
        .layouts_dir_path = "layouts",
        .content_dir_path = "content",
        .assets_dir_path = "assets",
        .static_assets = &.{
            "static/css/fonts.css",
            "static/css/style.css",
        },
        .host_url = "https://mfashby.net",
        .title = "mfashby.net",
    });
}