blob: e711b8fd9b23c2a44430194febbe961b25a635eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 = &.{},
.host_url = "https://mfashby.net",
.title = "mfashby.net",
});
}
|