You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
microzig/build.zig

16 lines
451 B
Zig

const std = @import("std");
const zine = @import("zine");
pub fn build(b: *std.Build) !void {
// zine.scriptyReferenceDocs(b, "content/documentation/scripty/index.md");
try zine.addWebsite(b, .{
.layouts_dir_path = "layouts",
.content_dir_path = "content",
.static_dir_path = "static",
.site = .{
.base_url = "https://microzig.tech",
.title = "Zig Embedded Group",
},
});
}