mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
36 lines
814 B
Go
36 lines
814 B
Go
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package serverconfigs
|
|
|
|
import "github.com/tdewolff/minify/v2/css"
|
|
|
|
type HTTPCSSOptimizationConfig struct {
|
|
HTTPBaseOptimizationConfig
|
|
|
|
IsOn bool `yaml:"isOn" json:"isOn"`
|
|
|
|
Precision int `yaml:"precision" json:"precision"`
|
|
KeepCSS2 bool `yaml:"keepCSS2" json:"keepCSS2"`
|
|
}
|
|
|
|
func NewHTTPCSSOptimizationConfig() *HTTPCSSOptimizationConfig {
|
|
return &HTTPCSSOptimizationConfig{
|
|
KeepCSS2: true,
|
|
}
|
|
}
|
|
|
|
func (this *HTTPCSSOptimizationConfig) Init() error {
|
|
err := this.HTTPBaseOptimizationConfig.Init()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (this *HTTPCSSOptimizationConfig) AsMinifier() *css.Minifier {
|
|
return &css.Minifier{
|
|
KeepCSS2: this.KeepCSS2,
|
|
Precision: this.Precision,
|
|
}
|
|
}
|