basics being displayed

This commit is contained in:
2026-03-16 12:44:06 -06:00
parent ef64c5cd0d
commit c252ef0e11
21 changed files with 1283 additions and 43 deletions

View File

@@ -21,7 +21,6 @@ config :cobblemon_ui, CobblemonUiWeb.Endpoint,
pubsub_server: CobblemonUi.PubSub,
live_view: [signing_salt: "X61XE3GM"]
# Configure esbuild (the version is required)
config :esbuild,
version: "0.25.4",

View File

@@ -9,7 +9,7 @@ import Config
config :cobblemon_ui, CobblemonUiWeb.Endpoint,
# Binding to loopback ipv4 address prevents access from other machines.
# Change to `ip: {0, 0, 0, 0}` to allow access from other machines.
http: [ip: {127, 0, 0, 1}],
http: [ip: {0, 0, 0, 0}, port: 4000],
check_origin: false,
code_reloader: true,
debug_errors: true,

View File

@@ -82,5 +82,4 @@ if config_env() == :prod do
# force_ssl: [hsts: true]
#
# Check `Plug.SSL` for all available options in `force_ssl`.
end