| 1234567891011121314151617181920212223242526272829303132333435363738 |
- import { readFileSync } from "node:fs"
- import solidPlugin from "vite-plugin-solid"
- import tailwindcss from "@tailwindcss/vite"
- import { fileURLToPath } from "url"
- const theme = fileURLToPath(new URL("./public/oc-theme-preload.js", import.meta.url))
- /**
- * @type {import("vite").PluginOption}
- */
- export default [
- {
- name: "opencode-desktop:config",
- config() {
- return {
- resolve: {
- alias: {
- "@": fileURLToPath(new URL("./src", import.meta.url)),
- },
- },
- worker: {
- format: "es",
- },
- }
- },
- },
- {
- name: "opencode-desktop:theme-preload",
- transformIndexHtml(html) {
- return html.replace(
- '<script id="oc-theme-preload-script" src="/oc-theme-preload.js"></script>',
- `<script id="oc-theme-preload-script">${readFileSync(theme, "utf8")}</script>`,
- )
- },
- },
- tailwindcss(),
- solidPlugin(),
- ]
|