2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 02:02:14 +00:00

Include *.csv in the built microsite (#625)

* Include `.csv` files as part of the ones that be included when building the site
This commit is contained in:
Juan Valencia 2019-05-10 14:12:31 +02:00 committed by Britney Wright
parent 3d111ff1b7
commit 382b9a54cf

View File

@ -406,7 +406,8 @@ lazy val docSettings = Seq(
micrositeGithubToken := sys.env.get("SBT_MICROSITES_PUBLISH_TOKEN"),
ghpagesNoJekyll := false,
fork in tut := true,
micrositeEditButton := Some(MicrositeEditButton("Improve this page", "/edit/master/modules/docs/src/main/tut/{{ page.path }}"))
micrositeEditButton := Some(MicrositeEditButton("Improve this page", "/edit/master/modules/docs/src/main/tut/{{ page.path }}")),
includeFilter in makeSite := "*.html" | "*.css" | "*.png" | "*.jpg" | "*.jpeg" | "*.gif" | "*.js" | "*.swf" | "*.md" | "*.webm" | "*.ico" | "CNAME" | "*.yml" | "*.svg" | "*.json" | "*.csv"
)
lazy val docs = (project in file("modules/docs"))