forked from neutralinojs/neutralinojs-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathneutralino.config.json
More file actions
35 lines (35 loc) · 823 Bytes
/
neutralino.config.json
File metadata and controls
35 lines (35 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"applicationId": "js.neutralino.MYAPP",
"version": "1.0.0",
"defaultMode": "window",
"documentRoot": "/app/build/",
"url": "/",
"enableServer": true,
"enableNativeAPI": true,
"exportAuthInfo": false,
"nativeAllowList": ["app.*"],
"modes": {
"window": {
"title": "MYAPP",
"width": 800,
"height": 500,
"minWidth": 400,
"minHeight": 200,
"icon": "/app/app-icon.png"
}
},
"cli": {
"binaryName": "MYAPP",
"resourcesPath": "/app/build/",
"extensionsPath": "/extensions/",
"binaryVersion": "6.2.0",
"clientVersion": "6.2.0",
"frontendLibrary": {
"patchFile": "/app/src/app.html",
"devUrl": "http://localhost:5173",
"projectPath": "/app/",
"devCommand": "pnpm dev",
"buildCommand": "pnpm build"
}
}
}