Skip to content

Commit

Permalink
Lint fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
Montoya committed Jan 5, 2024
1 parent c3cda7b commit f29b47a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
const codeTheme = require("prism-react-renderer/themes/dracula");
const remarkCodesandbox = require("remark-codesandbox");
const path = require("path");
const isProd = process.env.NODE_ENV === 'production';
const isProd = process.env.NODE_ENV === "production";

/** @type {import('@docusaurus/types').Config} */
const config = {
Expand Down Expand Up @@ -391,14 +391,14 @@ const config = {
},
],
isProd ?
[
"docusaurus-plugin-segment",
{
apiKey: process.env.SEGMENT_ANALYTICS_KEY,
load: {cookie: { sameSite: 'None', secure: true}},
page: true,
},
] : null,
[
"docusaurus-plugin-segment",
{
apiKey: process.env.SEGMENT_ANALYTICS_KEY,
load: { cookie: { sameSite: "None", secure: true } },
page: true,
},
] : null,
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
Expand Down

0 comments on commit f29b47a

Please sign in to comment.