zine-filenotfound-repro/build.zig

14 lines
342 B
Zig
Raw Permalink Normal View History

2024-10-08 14:26:14 +00:00
const std = @import("std");
const zine = @import("zine");
pub fn build(b: *std.Build) !void {
zine.website(b, .{
.title = "Some Website",
.host_url = "https://example.com",
.content_dir_path = "content",
.layouts_dir_path = "layouts",
.assets_dir_path = "assets",
.debug = true,
});
}