Skip to content

Commit 91e63b6

Browse files
Feature/rza 250175: Landing Page Redesign: Crossword page Update (#177)
2 parents 0d3a0c9 + b94fad4 commit 91e63b6

25 files changed

+1950
-124
lines changed

abcd.code-workspace

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,12 @@
122122
"dist/**": true
123123
},
124124
"git.autofetch": true,
125-
"git.branchPrefix": "feature/",
125+
"git.branchPrefix": "feature/RZA-25000X",
126126
"git.branchProtection": [
127127
"develop",
128128
"main"
129129
],
130-
"git.branchRandomName.enable": true,
130+
"git.branchRandomName.enable": false,
131131
"git.confirmSync": false,
132132
"git.enableCommitSigning": false,
133133
"git.enableSmartCommit": true,
@@ -192,7 +192,7 @@
192192
"*.log": "default"
193193
},
194194
"zenMode.centerLayout": false,
195-
"cSpell.words": [],
195+
"cSpell.words": [ ],
196196
"workbench.editor.limit.excludeDirty": true,
197197
"files.readonlyInclude": {
198198
".githooks/**": true

astro.config.mjs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ import partytown from "@astrojs/partytown";
33
import sitemap from "@astrojs/sitemap";
44
import { defineConfig } from "astro/config";
55

6+
const isProd = process.env.NODE_ENV === 'production';
7+
8+
console.log({ isProd })
9+
610
// https://astro.build/config
711
export default defineConfig({
812
site: "https://abcdkbd.com",
@@ -20,12 +24,12 @@ export default defineConfig({
2024
svg: true
2125
},
2226
integrations: [
23-
partytown({
27+
isProd ? partytown({
2428
// https://partytown.qwik.dev/google-tag-manager/#google-analytics-4-ga4
2529
config: {
2630
forward: ["dataLayer.push"]
2731
}
28-
}),
32+
}) : null,
2933
sitemap(),
3034
mdx()
3135
],

0 commit comments

Comments
 (0)