tangled
alpha
login
or
join now
anirudh.fi
/
vite
5
fork
atom
fast and minimal static site generator
ssg
5
fork
atom
overview
issues
1
pulls
pipelines
Comment out pre- and postbuild for now
anirudh.fi
4 years ago
137b1616
cf68ef9a
+3
-3
1 changed file
expand all
collapse all
unified
split
config
config.go
+3
-3
config/config.go
···
14
14
Name string `yaml:"name"`
15
15
Email string `yaml:"email"`
16
16
} `yaml:"author"`
17
17
-
URL string `yaml:"url"`
18
18
-
Prebuild []string `yaml:"prebuild"`
19
19
-
Postbuild []string `yaml:"postbuild"`
17
17
+
URL string `yaml:"url"`
18
18
+
// Prebuild []string `yaml:"prebuild"`
19
19
+
// Postbuild []string `yaml:"postbuild"`
20
20
}
21
21
22
22
var Config ConfigYaml