mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
27 lines
616 B
Go
27 lines
616 B
Go
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package serverconfigs
|
|
|
|
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
|
|
}
|