chore: init project
This commit is contained in:
commit
52a067f1eb
13
.eleventy.js
Normal file
13
.eleventy.js
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
module.exports = (config) => {
|
||||||
|
config.addWatchTarget("./assets/css");
|
||||||
|
|
||||||
|
config.addPassthroughCopy("./assets");
|
||||||
|
config.addPassthroughCopy("./src/**/*.{jpg,png}");
|
||||||
|
|
||||||
|
return {
|
||||||
|
dir: {
|
||||||
|
input: "src",
|
||||||
|
output: "dist",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
};
|
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
node_modules
|
||||||
|
dist
|
||||||
|
|
||||||
|
.wrangler
|
2439
package-lock.json
generated
Normal file
2439
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
13
package.json
Normal file
13
package.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"name": "faultables.net",
|
||||||
|
"private": true,
|
||||||
|
"version": "1.0.0",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "eleventy --serve",
|
||||||
|
"build": "eleventy",
|
||||||
|
"test": "echo \"it works\""
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@11ty/eleventy": "^2.0.1"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user