Skip to content

Commit

Permalink
Merge pull request #184 from Bitshala/ga_fix
Browse files Browse the repository at this point in the history
GA Fix
  • Loading branch information
rajarshimaitra authored Aug 24, 2024
2 parents 341ef38 + f6ad314 commit 99b04e0
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
import partytown from "@astrojs/partytown";

import react from "@astrojs/react";

// https://astro.build/config
export default defineConfig({
site: "https://www.bitshala.org",
base: "/",
integrations: [tailwind(), react()],
integrations: [
tailwind(),
react(),
partytown({
config: {
forward: ["dataLayer.push"],
},
}),
],
redirects: {
"/apply": "/cohorts",
},
Expand Down

0 comments on commit 99b04e0

Please sign in to comment.