-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocket.ini
64 lines (50 loc) · 1.38 KB
/
socket.ini
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
57
58
59
60
61
62
63
64
[meta]
title = "Next Native Tests"
version = 0.0.1
bundle_identifier = "co.socketsupply.nextnative.tests"
application_protocol = "next-native"
[build]
name = "next-native-tests"
flags = -O3
output = "build"
script = "./node_modules/.bin/next build ."
[build.copy-map]
## assets
src/static/ = static/
src/public/ = public/
src/app/globals.css = globals.css
src/index.html = index.html
src/loading.html = loading.html
node_modules/ = node_modules/
## next.js app
next.config.mjs = next.config.mjs
.next/standalone/.next = .next/
.next/static/ = app/_next/static/
## service worker
src/server.js = app/server.js
#[webview]
#service_worker_mode = "hybrid"
[webview.service-workers]
/app = app/server.js
[webview]
root = "/"
[debug]
flags = "-g"
[mac]
icon = "src/icon.png"
trafficLightPosition = "10x26"
[ios]
; signing guide: https://socketsupply.co/guides/#ios-1
codesign_identity = ""
; Describes how Xcode should export the archive. Available options: app-store, package, ad-hoc, enterprise, development, and developer-id.
distribution_method = "release-testing"
; A path to the provisioning profile used for signing iOS app.
provisioning_profile = ""
; which device to target when building for the simulator.
simulator_device = "iPhone 15"
[window]
height = 50%
width = 50%
titleBarStyle = "hiddenInset"
backgroundColorDark = "rgba(0, 0, 0, 1)"
backgroundColorLight = "rgba(255, 255, 255, 1)"