Skip to content

Commit

Permalink
feat: change the order
Browse files Browse the repository at this point in the history
  • Loading branch information
AbigailDeng authored and AbigailDeng committed Sep 30, 2024
1 parent f50a439 commit 41238db
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { themes as prismThemes } from 'prism-react-renderer';
import type { Config } from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
import { themes as prismThemes } from "prism-react-renderer";
import type { Config } from "@docusaurus/types";
import type * as Preset from "@docusaurus/preset-classic";
import footerLinks from "./config/footer-links.json";
import navbarLinks from "./config/navbar-links.json";
import remarkMath from "remark-math";
Expand Down Expand Up @@ -37,18 +37,20 @@ const config: Config = {
},

plugins: ["docusaurus-plugin-hotjar"],
scripts: [{
src: "https://www.googletagmanager.com/gtag/js?id=G-PFZ0BCQHMY",
async: true,
},
{
src: '/js/google-analytics.js',
async: false,
},
{
src: '/js/amplitude.js',
async: false,
}],
scripts: [
{
src: "/js/amplitude.js",
async: true,
},
{
src: "https://www.googletagmanager.com/gtag/js?id=G-PFZ0BCQHMY",
async: true,
},
{
src: "/js/google-analytics.js",
async: true,
},
],
presets: [
[
"classic",
Expand Down

0 comments on commit 41238db

Please sign in to comment.