Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rambip committed Aug 5, 2023
1 parent 4afb52e commit dcc809d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,12 @@
buildExample = name: craneLib.buildTrunkPackage {
inherit CARGO_BUILD_TARGET cargoArtifacts;
src = fullSrc;
pname = "leptos-markdown-${name}";
trunkIndexPath = "examples/${name}/index.html";
cargoExtraArgs = "--package=./examples/${name}";
# RELATIVE URLS are a MESS
# https://github.com/thedodd/trunk/pull/470
trunkExtraBuildArgs = "--public-url=/leptos-mardown/${name}";
trunkExtraBuildArgs = "--public-url=/leptos-markdown/${name}";
};
example_names = builtins.attrNames(builtins.readDir ./examples);
attr_examples = builtins.map
Expand Down

0 comments on commit dcc809d

Please sign in to comment.