mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-17 22:00:00 +00:00
feat(setup): add cors option to setup script
This commit is contained in:
parent
450d01753d
commit
314c5fbfcc
1 changed files with 7 additions and 1 deletions
|
@ -42,6 +42,12 @@ rl.question(q, r1 => {
|
|||
rl.question(q, r2 => {
|
||||
if (r2) ob['port'] = r2
|
||||
if (!r1 && r2) ob['selfURL'] = `http://localhost:${r2}/`
|
||||
|
||||
console.log(Bright("\nIf you would like to enable CORS, enter 'y'. (y)\nCORS allows other websites and extensions to use your instance's API."))
|
||||
|
||||
rl.question(q, r3 => {
|
||||
if (r3.toLowerCase() !== 'y') ob['cors'] = '0'
|
||||
final()
|
||||
})
|
||||
});
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue