fix tailwind debug and skip language model on dev.

This commit is contained in:
fiatjaf
2024-09-11 16:39:19 -03:00
parent 248f9577e9
commit 7a054f9d65
2 changed files with 3 additions and 3 deletions

View File

@@ -91,9 +91,9 @@ func main() {
"module.exports", "tailwind.config", 1,
)
styleb, err := os.ReadFile("tailwind.css")
styleb, err := os.ReadFile("base.css")
if err != nil {
log.Fatal().Err(err).Msg("failed to load tailwind.css")
log.Fatal().Err(err).Msg("failed to load base.css")
return
}
style := string(styleb)