Skip to content

Commit 01db3c0

Browse files
authored
chore: use relative paths (#149)
1 parent 8d02b09 commit 01db3c0

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

static/register.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
chrome.devtools.panels.create(
22
'Svelte',
3-
chrome.devtools.panels.themeName === 'dark'
4-
? '/icons/svelte-logo-dark.svg'
5-
: '/icons/svelte-logo-light.svg',
6-
'/index.html',
3+
`icons/svelte-${chrome.devtools.panels.themeName}.svg`,
4+
'index.html',
75
// (panel) => {
86
// panel.onShown.addListener((win) =>
97
// chrome.devtools.inspectedWindow.eval('$0', (payload) =>

0 commit comments

Comments
 (0)