2024-09-22 15:46:38 +00:00
|
|
|
package h
|
|
|
|
|
|
|
|
|
|
import "strings"
|
|
|
|
|
|
|
|
|
|
func BaseExtensions() string {
|
2024-11-09 17:53:33 +00:00
|
|
|
extensions := []string{"path-deps", "response-targets", "mutation-error", "htmgo", "sse"}
|
2024-09-22 15:46:38 +00:00
|
|
|
if IsDevelopment() {
|
|
|
|
|
extensions = append(extensions, "livereload")
|
|
|
|
|
}
|
|
|
|
|
return strings.Join(extensions, ", ")
|
|
|
|
|
}
|