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

pub fn build(b: *std.Build) !void {
    try zine.addWebsite(b, .{
        .layouts_dir_path = "layouts",
        .content_dir_path = "content",
        .static_dir_path = "static",
        .host_url = "https://mfashby.net",
        .title = "mfashby.net",
    });
}