Format
This commit is contained in:
parent
fea73f220d
commit
6563360988
1 changed files with 6 additions and 6 deletions
12
.eleventy.js
12
.eleventy.js
|
|
@ -8,11 +8,11 @@ const pluginRss = require("@11ty/eleventy-plugin-rss");
|
|||
module.exports = function (eleventyConfig) {
|
||||
eleventyConfig.addPlugin(pluginRss);
|
||||
|
||||
eleventyConfig.addPassthroughCopy({ 'assets/css': 'css' });
|
||||
eleventyConfig.addPassthroughCopy({ 'assets/fonts': 'fonts' });
|
||||
eleventyConfig.addPassthroughCopy({ 'assets/images': 'images' });
|
||||
eleventyConfig.addPassthroughCopy({ "assets/css": "css" });
|
||||
eleventyConfig.addPassthroughCopy({ "assets/fonts": "fonts" });
|
||||
eleventyConfig.addPassthroughCopy({ "assets/images": "images" });
|
||||
eleventyConfig.addPassthroughCopy({
|
||||
'node_modules/simpledotcss/simple.css': 'css/simple.css',
|
||||
"node_modules/simpledotcss/simple.css": "css/simple.css",
|
||||
});
|
||||
|
||||
eleventyConfig.addFilter("makeRfc822Date", function (value) {
|
||||
|
|
@ -46,8 +46,8 @@ module.exports = function (eleventyConfig) {
|
|||
|
||||
return {
|
||||
dir: {
|
||||
input: 'src',
|
||||
output: 'dist',
|
||||
input: "src",
|
||||
output: "dist",
|
||||
},
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue