Skip to content

Commit c501da0

Browse files
committed
fix(assets): update logo image source to use a remote URL for consistency across templates
1 parent b16b05c commit c501da0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/create-tbk-app/templates/base/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<nav>
2020
<div class="logo">
2121
<img
22-
src="/assets/images/logo.png"
22+
src="https://raw.githubusercontent.com/muneebhashone/typescript-backend-toolkit/main/logo.png"
2323
alt="TypeScript Backend Toolkit Logo"
2424
/>
2525
</div>

packages/create-tbk-app/templates/bullboard/src/plugins/bullboard/index.ts.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const bullboardPlugin: PluginFactory<BullboardOptions> = (
7878
uiConfig: {
7979
boardTitle: 'Queues Manager',
8080
boardLogo: {
81-
path: '/assets/images/logo.png',
81+
path: 'https://raw.githubusercontent.com/muneebhashone/typescript-backend-toolkit/main/logo.png',
8282
width: '30px',
8383
height: '30px',
8484
},

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<nav>
2020
<div class="logo">
2121
<img
22-
src="/assets/images/logo.png"
22+
src="https://raw.githubusercontent.com/muneebhashone/typescript-backend-toolkit/main/logo.png"
2323
alt="TypeScript Backend Toolkit Logo"
2424
/>
2525
</div>

src/plugins/bullboard/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const bullboardPlugin: PluginFactory<BullboardOptions> = (
7878
uiConfig: {
7979
boardTitle: 'Queues Manager',
8080
boardLogo: {
81-
path: '/assets/images/logo.png',
81+
path: 'https://raw.githubusercontent.com/muneebhashone/typescript-backend-toolkit/main/logo.png',
8282
width: '30px',
8383
height: '30px',
8484
},

0 commit comments

Comments
 (0)