Skip to content

Commit a028fe0

Browse files
committed
chore: fix siteUrl
1 parent ef59f88 commit a028fe0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lana-docs-site/docusaurus.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import { themes as prismThemes } from 'prism-react-renderer';
44

55
const organizationName = 'certinia';
66
const projectName = 'debug-log-analyzer';
7-
const siteUrl = `https://${organizationName}.github.io`;
7+
const prodUrl = `https://${organizationName}.github.io`;
8+
const siteUrl = `${prodUrl}/${projectName}`;
89

9-
//certinia.github.io/debug-log-analyzer/favicon.svg
10-
https: const config: Config = {
10+
const config: Config = {
1111
future: {
1212
v4: true,
1313
// eslint-disable-next-line @typescript-eslint/naming-convention
@@ -17,7 +17,7 @@ https: const config: Config = {
1717
tagline:
1818
'blazing-fast VS Code extension for Salesforce. Visualize and debug Apex logs with interactive flame charts, dynamic call trees, and detailed SOQL/DML breakdowns. Identify performance bottlenecks, gain deep transaction insights and optimize slow Apex.',
1919
// Set the production url of your site here
20-
url: siteUrl,
20+
url: prodUrl,
2121
// Set the /<baseUrl>/ pathname under which your site is served
2222
// For GitHub pages deployment, it is often '/<projectName>/'
2323
baseUrl: `/${projectName}/`,

0 commit comments

Comments
 (0)