Merge commit 'd07b27311dc87fcf5839ce2647ee6afa3b3b2a7b'

This commit is contained in:
SethBurkart123
2024-03-24 17:26:44 +11:00
3 changed files with 16 additions and 1 deletions
+6
View File
@@ -28,5 +28,11 @@
"js": ["src/SEQTA.ts"],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": ["src/interface/index.html"],
"matches": ["*://*/*"]
}
]
}
+1 -1
View File
@@ -7,7 +7,7 @@
</head>
<body class="">
<div id="ExtensionPopup"></div>
<script type="module" src="./main.tsx"></script>
<script type="module" src="src/interface/main.tsx"></script>
</body>
</html>
+9
View File
@@ -4,6 +4,7 @@ import million from "million/compiler"
import manifest from './manifest.json'
import react from '@vitejs/plugin-react-swc'
import { sentryVitePlugin } from "@sentry/vite-plugin";
import { join } from 'path'
export default defineConfig({
plugins: [
@@ -34,4 +35,12 @@ export default defineConfig({
port: 5173,
},
},
build: {
minify: false,
rollupOptions: {
input: {
settings: join(__dirname, 'src', 'interface', 'index.html'),
}
},
},
})