14 lines
342 B
Zig
14 lines
342 B
Zig
|
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,
|
||
|
});
|
||
|
}
|