From 375d7a2d8088f3a19c0dab63f2e208fe3bf41775 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Tue, 6 Dec 2022 17:30:38 -0500 Subject: [PATCH] Most localhost to 127.0.0.1 conversions. I hate IPv6. --- commands/templates/client/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/templates/client/config.js b/commands/templates/client/config.js index 10da9ae..8e72875 100644 --- a/commands/templates/client/config.js +++ b/commands/templates/client/config.js @@ -45,4 +45,4 @@ export const log_levels = ["debug", "warn", "info", "error", "table", "assert"]; export const twitter_user = "@lzsthw"; -export const site_name = "localhost:5001"; +export const site_name = "127.0.0.1:5001";