make build.gradle.kts config single line

This commit is contained in:
hexboy 2024-10-17 17:52:00 +03:30
parent a5e3afeded
commit 8606a5e18c

View file

@ -38,7 +38,7 @@ app.listen(PORT, () => {
console.log('\nadd this ⬇️ in build.gradle.kts');
console.log(
chalk.green(
`maven {\n url = uri("http://127.0.0.1:${PORT}/${DEFAULT_PATH}")\n isAllowInsecureProtocol = true\n}`
`maven { url = uri("http://127.0.0.1:${PORT}/${DEFAULT_PATH}"); isAllowInsecureProtocol = true }`
)
);