-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathneutralino.config.json
56 lines (56 loc) · 1.49 KB
/
neutralino.config.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"$schema": "https://raw.githubusercontent.com/benjammin4dayz/neutralino-schema/refs/heads/main/dist/neutralino.config.schema.json",
"applicationId": "neu.react.vite",
"version": "0.1.0",
"author": "",
"description": "",
"defaultMode": "window",
"documentRoot": "/react-src/dist/",
"url": "/",
"singlePageServe": false,
"enableServer": true,
"enableNativeAPI": true,
"nativeAllowList": ["app.*"],
"logging": {
"enabled": true,
"writeToLogFile": true
},
"modes": {
"window": {
"title": "Neu-React-Vite App",
"width": 800,
"height": 500,
"minWidth": 400,
"minHeight": 200,
"fullScreen": false,
"icon": "/react-src/public/favicon.ico",
"alwaysOnTop": false,
"enableInspector": false,
"borderless": false,
"transparent": false,
"maximize": false,
"resizable": true,
"hidden": false,
"useSavedState": false,
"exitProcessOnClose": true
}
},
"cli": {
"binaryName": "neu-react-vite",
"resourcesPath": "/react-src/dist/",
"resourcesExclude": "",
"extensionsPath": "/extensions/",
"extensionsExclude": "",
"distributionPath": "/dist/",
"frontendLibrary": {
"patchFile": "/react-src/index.html",
"devUrl": "http://localhost:3000",
"projectPath": "/react-src/",
"initCommand": "cd .. && npm ci",
"devCommand": "npm run dev",
"waitTimeout": 20000,
"buildCommand": "npm run build"
},
"binaryVersion": "5.5.0"
}
}