mfashby.net

Website mfashby.net
git clone git://code.mfashby.net:/mfashby.net
Log | Files | Refs | Submodules | README

build.zig (349B)


      1 const std = @import("std");
      2 const zine = @import("zine");
      3 
      4 pub fn build(b: *std.Build) !void {
      5     zine.website(b, .{
      6         .layouts_dir_path = "layouts",
      7         .content_dir_path = "content",
      8         .assets_dir_path = "assets",
      9         .static_assets = &.{},
     10         .host_url = "https://mfashby.net",
     11         .title = "mfashby.net",
     12     });
     13 }