forked from tabarra/txAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.deploy.config.js
32 lines (29 loc) · 917 Bytes
/
.deploy.config.js
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
export default {
debouncerInterval: 250,
preReleaseExpirationDays: 21,
//NOTE: to test the panel from LAN, change localhost to your LAN IP
//but the NUI will not work due to HTTPS->HTTP restrictions
panelViteUrl: 'http://localhost:40122',
// panelViteUrl: 'http://192.168.0.39:40122',
txAdminArgs: [
'+set', 'txAdminDevMode', 'true',
'+set', 'txAdminVerbose', 'true',
// '+set', 'txAdminPort', '40125',
// '--trace-warnings',
// '--inspect',
// '--trace-gc',
// '--max-old-space-size=4096', //doesn't work
//FIXME: broken
// '+set', 'txDebugPlayerlistGenerator', 'true',
// '+set', 'txDebugExternalSource', 'xxxxxxxx:30120',
],
copy: [
'README.md',
'LICENSE',
'docs/',
'fxmanifest.lua',
'entrypoint.js',
'resource/',
'web/',
],
}