Skip to content

Commit a6e4607

Browse files
committed
FIRST BLOOD
0 parents  commit a6e4607

File tree

9 files changed

+3680
-0
lines changed

9 files changed

+3680
-0
lines changed

.eleventy.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module.exports = (eleventyConfig) => {
2+
eleventyConfig.addTransform("jsmin", require("./transforms/jsmin"));
3+
eleventyConfig.addTransform("htmlmin", require("./transforms/htmlmin"));
4+
5+
return {
6+
dir: {
7+
input: "src",
8+
output: "www",
9+
},
10+
};
11+
};

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
3+
www

0 commit comments

Comments
 (0)