Skip to content

Commit

Permalink
Adding default GA4 token
Browse files Browse the repository at this point in the history
  • Loading branch information
blast-hardcheese committed Oct 25, 2023
1 parent a2a806e commit c067cc3
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions src/main/scala/microsites/MicrositesPlugin.scala
Expand Up @@ -108,22 +108,23 @@ object MicrositesPlugin extends AutoPlugin {
"white-color" -> "#FFFFFF"
)
},
micrositeFavicons := Seq(),
micrositeVersionList := Seq(),
micrositeGithubOwner := gitRemoteInfo._1,
micrositeGithubRepo := gitRemoteInfo._2,
micrositeGithubToken := None,
micrositeGitHostingService := GitHub,
micrositeGitHostingUrl := "",
micrositePushSiteWith := GHPagesPlugin,
micrositeAnalyticsToken := "",
micrositeGitterChannel := true,
micrositeGitterChannelUrl := s"${micrositeGithubOwner.value}/${micrositeGithubRepo.value}",
micrositeFooterText := Some(layouts.Layout.footer.toString),
micrositeEditButton := None,
micrositeGithubLinks := true,
micrositeSearchEnabled := true,
micrositeHomeButtonTarget := "repo",
micrositeFavicons := Seq(),
micrositeVersionList := Seq(),
micrositeGithubOwner := gitRemoteInfo._1,
micrositeGithubRepo := gitRemoteInfo._2,
micrositeGithubToken := None,
micrositeGitHostingService := GitHub,
micrositeGitHostingUrl := "",
micrositePushSiteWith := GHPagesPlugin,
micrositeAnalyticsToken := "",
micrositeGoogleAnalytics4Token := "",
micrositeGitterChannel := true,
micrositeGitterChannelUrl := s"${micrositeGithubOwner.value}/${micrositeGithubRepo.value}",
micrositeFooterText := Some(layouts.Layout.footer.toString),
micrositeEditButton := None,
micrositeGithubLinks := true,
micrositeSearchEnabled := true,
micrositeHomeButtonTarget := "repo",
makeSite / includeFilter := "*.html" | "*.css" | "*.png" | "*.jpg" | "*.jpeg" | "*.gif" | "*.js" | "*.swf" | "*.md" | "*.webm" | "*.ico" | "CNAME" | "*.yml" | "*.svg" | "*.json",
Jekyll / includeFilter := (makeSite / includeFilter).value || "LICENSE",
commands ++= Seq(publishMicrositeCommand),
Expand Down

0 comments on commit c067cc3

Please sign in to comment.