mirror of
https://github.com/zadam/trilium.git
synced 2026-02-11 08:14:39 +01:00
24 lines
579 B
JavaScript
24 lines
579 B
JavaScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
modules: ['@wxt-dev/auto-icons'],
|
|
manifest: {
|
|
name: "Trilium Web Clipper",
|
|
description: "Save web clippings to Trilium Notes.",
|
|
permissions: [
|
|
"activeTab",
|
|
"tabs",
|
|
"http://*/",
|
|
"https://*/",
|
|
"<all_urls>",
|
|
"storage",
|
|
"contextMenus"
|
|
],
|
|
browser_specific_settings: {
|
|
gecko: {
|
|
id: "{1410742d-b377-40e7-a9db-63dc9c6ec99c}"
|
|
}
|
|
}
|
|
}
|
|
});
|