Skip to content

Commit

Permalink
Adjusting GA Path
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengyangliu committed Jun 29, 2024
1 parent 9fa5c07 commit 86d5d37
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-npm-package-and-deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Build
env:
NODE_ENV: production
GA_ID: ${{ secrets.GA_ID_ONLINE }}
GA_ID: ${{ secrets.GA_ID }}
NODE_OPTIONS: --max-old-space-size=4000
run: npm run build

Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Build
env:
NODE_ENV: production
GA_ID: ${{ secrets.GA_ID_ONLINE }}
GA_ID: ${{ secrets.GA_ID }}
NODE_OPTIONS: --max-old-space-size=4000
run: npm run build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ jobs:
- name: Build
env:
NODE_ENV: production
GA_ID: ${{ secrets.GA_ID_ONLINE }}
GA_ID: ${{ secrets.GA_ID }}
NODE_OPTIONS: --max-old-space-size=4000
run: npm run build
2 changes: 1 addition & 1 deletion src/playground/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import styles from './index.css';

initialAnalytics();
// Register "base" page view
analytics.send({hitType: 'pageview', page: '/'});
analytics.send({hitType: 'pageview', page: '/community/web'});

const appTarget = document.createElement('div');
appTarget.className = styles.app;
Expand Down

0 comments on commit 86d5d37

Please sign in to comment.