mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-05 19:24:39 +00:00
index on main: 6c952de improve million application
This commit is contained in:
@@ -28,5 +28,11 @@
|
||||
"js": ["src/SEQTA.ts"],
|
||||
"run_at": "document_start"
|
||||
}
|
||||
],
|
||||
"web_accessible_resources": [
|
||||
{
|
||||
"resources": ["src/interface/index.html"],
|
||||
"matches": ["*://*/*"]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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'),
|
||||
}
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user