-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwxt.config.ts
More file actions
36 lines (31 loc) · 915 Bytes
/
Copy pathwxt.config.ts
File metadata and controls
36 lines (31 loc) · 915 Bytes
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
28
29
30
31
32
33
34
35
36
import tailwindcss from "@tailwindcss/vite";
import { defineConfig } from "wxt";
export default defineConfig({
modules: ["@wxt-dev/module-react"],
srcDir: "src",
outDir: "dist",
vite: () => ({
plugins: [tailwindcss()],
}),
manifest: {
name: "GitHub Syntax Themes",
description:
"A collection of syntax themes for GitHub's code blocks, gists, and markdown code snippets.",
version: "1.0.0",
action: {
default_title: "GitHub Syntax Themes",
default_icon: {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png",
"256": "icons/icon-256.png",
"512": "icons/icon-512.png",
},
default_popup: "popup/index.html",
},
permissions: ["storage", "tabs"],
host_permissions: ["https://*.github.qkg1.top/*"],
},
});