fix: image backgrounds not working after build

This commit is contained in:
SethBurkart123
2024-05-24 17:06:42 +10:00
parent 7a5f91a8c1
commit 4c8094a876
2 changed files with 6 additions and 1 deletions
+4
View File
@@ -33,6 +33,10 @@
{ {
"resources": ["src/interface/index.html"], "resources": ["src/interface/index.html"],
"matches": ["*://*/*"] "matches": ["*://*/*"]
},
{
"resources": ["src/seqta/ui/background/background.html"],
"matches": ["*://*/*"]
} }
] ]
} }
+2 -1
View File
@@ -29,7 +29,8 @@ export default defineConfig({
minify: false, minify: false,
rollupOptions: { rollupOptions: {
input: { input: {
settings: join(__dirname, 'src', 'interface', 'index.html') settings: join(__dirname, 'src', 'interface', 'index.html'),
backgrounds: join(__dirname, 'src', 'seqta', 'ui', 'background', 'background.html')
} }
} }
} }