15 lines
No EOL
405 B
Zig
15 lines
No EOL
405 B
Zig
const std = @import("std");
|
|
const zine = @import("zine");
|
|
|
|
pub fn build(b: *std.Build) !void {
|
|
zine.website(b, .{
|
|
.title = "Flow Editor",
|
|
.host_url = "https://flow-editor.github.io",
|
|
.content_dir_path = "content",
|
|
.layouts_dir_path = "layouts",
|
|
.assets_dir_path = "assets",
|
|
.static_assets = &.{
|
|
"video/flow-control.mp4",
|
|
},
|
|
});
|
|
} |