chore: init project

This commit is contained in:
rizaldy 2024-04-28 23:26:13 +07:00
commit 52a067f1eb
4 changed files with 2469 additions and 0 deletions

13
.eleventy.js Normal file
View 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
View File

@ -0,0 +1,4 @@
node_modules
dist
.wrangler

2439
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

13
package.json Normal file
View 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"
}
}