-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwxt.config.ts
More file actions
23 lines (22 loc) · 697 Bytes
/
wxt.config.ts
File metadata and controls
23 lines (22 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { defineConfig } from "wxt";
import react from "@vitejs/plugin-react";
import vitePluginInspect from "vite-plugin-inspect";
// See https://wxt.dev/api/config.html
export default defineConfig({
vite: () => ({
plugins: [react(), vitePluginInspect({ open: true })],
}),
manifest: {
name: "Atomic CSS Devtools",
short_name: "Atomic CSS Devtools",
description:
"A devtool panel for debugging Atomic CSS rules as if they were not atomic",
author: "@astahmer_dev",
homepage_url: "https://github.com/astahmer/atomic-css-devtools",
developer: {
name: "@astahmer_dev",
url: "https://twitter.com/astahmer_dev",
},
permissions: [],
},
});