You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'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.',
17
19
// Set the production url of your site here
18
-
url: `https://${organizationName}.github.io`,
20
+
url: prodUrl,
19
21
// Set the /<baseUrl>/ pathname under which your site is served
20
22
// For GitHub pages deployment, it is often '/<projectName>/'
21
23
baseUrl: `/${projectName}/`,
@@ -33,7 +35,7 @@ const config: Config = {
33
35
defaultLocale: 'en',
34
36
locales: ['en'],
35
37
},
36
-
favicon: '/favicon.svg',
38
+
favicon: `${siteUrl}/favicon.svg`,
37
39
// Enhanced head tags for better search engine recognition
38
40
// Multiple favicon formats for better compatibility
39
41
headTags: [
@@ -42,23 +44,23 @@ const config: Config = {
42
44
attributes: {
43
45
rel: 'icon',
44
46
type: 'image/svg+xml',
45
-
href: `/${projectName}/favicon.svg`,
47
+
href: `${siteUrl}/favicon.svg`,
46
48
},
47
49
},
48
50
{
49
51
tagName: 'link',
50
52
attributes: {
51
53
rel: 'icon',
52
54
type: 'image/x-icon',
53
-
href: `/${projectName}/favicon.ico`,// fallback for older browsers
55
+
href: `${siteUrl}/favicon.ico`,// fallback for older browsers
54
56
},
55
57
},
56
58
{
57
59
tagName: 'link',
58
60
attributes: {
59
61
rel: 'apple-touch-icon',// Apple touch icon for better mobile display
0 commit comments