-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwxt.config.ts
27 lines (26 loc) · 859 Bytes
/
wxt.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { defineConfig } from 'wxt'
import react from '@vitejs/plugin-react'
// See https://wxt.dev/api/config.html
export default defineConfig({
manifest: {
host_permissions: [
"*://airflow.apache.org/docs/*",
// "*://*.angular.io/*",
"*://code.angularjs.org/*",
"*://dev.mysql.com/doc/refman/*",
"*://docs.bazel.build/*",
"*://docs.djangoproject.com/*",
"*://docs.oracle.com/en/*",
"*://docs.python.org/*",
"*://laravel.com/*",
"*://scala-lang.org/api/*",
"*://www.postgresql.org/docs/*",
],
permissions: ["declarativeNetRequest", "declarativeNetRequestFeedback", "storage"],
name: 'DocVersionRedirector'
},
srcDir: 'src',
vite: () => ({
plugins: [react()],
}),
})