electrobun-config

Solid

The complete electrobun.config.ts field reference. Use when editing config, looking up a specific option, understanding defaults, or configuring platform-specific behaviour.

AI & Automation 393 stars 68 forks Updated today MIT

Install

View on GitHub

Quality Score: 87/100

Stars 20%
86
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# electrobun.config.ts — Complete Reference ```typescript import type { ElectrobunConfig } from "electrobun"; export default { // ── App identity ──────────────────────────────────────────────────────── app: { name: "MyApp", // Display name (default: "MyApp") identifier: "com.example.myapp", // Reverse DNS bundle ID (REQUIRED, must be unique) version: "0.1.0", // Semver — bump for each release description: "My app", // Used in Linux .desktop file urlSchemes: ["myapp"], // Deep link schemes: myapp:// (macOS only currently) }, // ── Build ──────────────────────────────────────────────────────────────── build: { // Output directories buildFolder: "build", // Where built apps go (default: "build") artifactFolder: "artifacts", // Where release artifacts go (default: "artifacts") targets: "current", // Target platforms; "current" = host platform (default: "current") // Bun main process bundle bun: { entrypoint: "src/bun/index.ts", // Main process entry (default: "src/bun/index.ts") minify: false, // Any Bun.build() options work here sourcemap: "inline", define: { "process.env.NODE_ENV": '"development"' }, }, // Renderer (browser-side) bundles — one per BrowserView with a TS entrypoint views: { mainview: { entrypoint: "src/mainview/index.ts" }, sidebar: { entrypoint: "src/sid...

Details

Author
milady-ai
Repository
milady-ai/milady
Created
3 months ago
Last Updated
today
Language
TypeScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category