123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "$schema": "https://schema.tauri.app/config/2.0.0-rc",
- "productName": "Hoppscotch Agent Portable",
- "version": "0.1.3",
- "identifier": "io.hoppscotch.agent",
- "build": {
- "beforeDevCommand": "pnpm dev",
- "devUrl": "http://localhost:1420",
- "beforeBuildCommand": "pnpm build",
- "frontendDist": "../dist"
- },
- "app": {
- "windows": [
- {
- "title": "Hoppscotch Agent Portable",
- "width": 600,
- "height": 400,
- "center": true,
- "resizable": false,
- "maximizable": false,
- "minimizable": false,
- "focus": true,
- "alwaysOnTop": true,
- "create": false
- }
- ],
- "security": {
- "csp": null
- }
- },
- "bundle": {
- "active": false,
- "targets": "all",
- "icon": [
- "icons/32x32.png",
- "icons/128x128.png",
- "icons/128x128@2x.png",
- "icons/icon.icns",
- "icons/icon.ico"
- ],
- "createUpdaterArtifacts": false
- },
- "plugins": {
- "updater": {
- "active": false
- }
- }
- }
|