Added eleventy config to add public folder passthrough, updated pack.json to serve content instead of compile, added plugins/metadata to rendering engine
19 lines
457 B
JSON
19 lines
457 B
JSON
{
|
|
"name": "cybyside",
|
|
"version": "1.0.0",
|
|
"description": "My personal blog",
|
|
"scripts": {
|
|
"start": "npx @11ty/eleventy --input ./src --serve",
|
|
"build": "npx @11ty/eleventy --input .src",
|
|
"clean": "rm -rf {_site,./src/_site}"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.cyper.cc/Cyper/CyBySide"
|
|
},
|
|
"keywords": ["blog", "@11ty/eleventy", "eleventy"],
|
|
"author": "Cyper",
|
|
"license": "ISC",
|
|
"type": "module"
|
|
}
|