mirror of
https://github.com/GetOpenScript/OpenScript.git
synced 2026-09-18 09:45:43 +00:00
12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
import { defineConfig } from "vite";
|
|
import webExtension from "vite-plugin-web-extension";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
webExtension({
|
|
manifest: "manifest.json",
|
|
browser: "chrome",
|
|
}),
|
|
],
|
|
});
|