From 657d839acd16a47aaf3e394530078a9189e4adbb Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Tue, 2 Sep 2025 19:45:18 -0400 Subject: [PATCH] Added watcher for SASS preprocessing --- config/dev.exs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/dev.exs b/config/dev.exs index 4803ff0..5a81f7e 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -17,7 +17,7 @@ config :sukaato, SukaatoWeb.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}, port: 4000], - http: [ip: {127, 0, 0, 0, 1}, port: 4000], + # http: [ip: {127, 0, 0, 0, 1}, port: 80], https: [ port: 4001, cipher_suite: :strong, @@ -30,6 +30,7 @@ config :sukaato, SukaatoWeb.Endpoint, secret_key_base: "DNC9b/fju5Rxh6d8QY1TNsHe0fWoN1Z7A8gYGJdebAL8wPxOtoZRr3+g3oXUZg0f", watchers: [ esbuild: {Esbuild, :install_and_run, [:sukaato, ~w(--sourcemap=inline --watch)]}, + sass: {DartSass, :install_and_run, [:sukaato, ~w(--watch)]}, tailwind: {Tailwind, :install_and_run, [:sukaato, ~w(--watch)]} ]