refactor: move welcome.html to src/, simplify vite build config, cleanup cli.ts formatting

This commit is contained in:
Tommy D. Rossi
2026-01-23 23:57:25 +01:00
parent 18d0cdb646
commit f9869a59f2
6 changed files with 33 additions and 32 deletions
+1 -1
View File
@@ -1163,7 +1163,7 @@ function updateContextMenuVisibility(): void {
chrome.runtime.onInstalled.addListener((details) => {
if (import.meta.env.TESTING) return
if (details.reason === 'install') {
void chrome.tabs.create({ url: 'welcome.html' })
void chrome.tabs.create({ url: 'src/welcome.html' })
}
})