-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.optimize.conf.xml
57 lines (43 loc) · 1.54 KB
/
.optimize.conf.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<xml>
<!-- include default configuration file (relative to this file) -->
<include src="{EXT}/conf/common.conf.xml" />
<!-- default configuration -->
<config>
<!-- where is your htdocs root directory -->
<!-- this is needed to create absolute urls -->
<!-- default is relative to the config file -->
<webroot>{CONF}</webroot>
<!-- define a current working directory -->
<!-- you can adjust this also in the xml config -->
<directory>{WWW}</directory>
<!-- disable headers -->
<headtmpl></headtmpl>
<!-- enable optional opimizer -->
<optimize-gz>1</optimize-gz>
<optimize-png>1</optimize-png>
<optimize-jpg>1</optimize-jpg>
<optimize-gif>1</optimize-gif>
<optimize-mng>1</optimize-mng>
<optimize-zip>1</optimize-zip>
<!-- disable crc file -->
<crc-file>0</crc-file>
<!-- disable comments -->
<crc-comment>0</crc-comment>
<head-comment>0</head-comment>
</config>
<!-- optimize operations (id needed to overwrite) -->
<optimize step="optimize" disabled="false">
<!-- best jpg compression -->
<jpg disabled="true">
<!-- recursively improve jpg compression -->
<file path="./Unity/MicroSplatTestBiomes/Assets" file="*.jpg" recursive="true" />
<file path="./Worlds/Test Biomes" file="*.jpg" recursive="true" />
</jpg>
<!-- best png compression -->
<png disabled="false">
<!-- recursively improve png compression -->
<file path="./Unity/MicroSplatTestBiomes/Assets" file="*.png" recursive="true" />
<file path="./Worlds/Test Biomes" file="*.png" recursive="true" />
</png>
</optimize>
</xml>