wails/v2/internal/app/app_devtools_not.go
2023-11-12 12:30:49 +11:00

9 lines
200 B
Go

//go:build !devtools
package app
// IsDevtoolsEnabled returns true if devtools should be enabled
// Note: devtools flag is also added in debug builds
func IsDevtoolsEnabled() bool {
return false
}