11 lines
274 B
Go
11 lines
274 B
Go
package h
|
|
|
|
import "strings"
|
|
|
|
func BaseExtensions() string {
|
|
extensions := []string{"path-deps", "response-targets", "mutation-error", "htmgo", "diffdom-swap"}
|
|
if IsDevelopment() {
|
|
extensions = append(extensions, "livereload")
|
|
}
|
|
return strings.Join(extensions, ", ")
|
|
}
|