From 191fb0c0aa31a5142f81ea6f7fcf253b10f0297c Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sun, 28 Aug 2022 00:41:33 +0530 Subject: * Project Restructred * Adds Tailwind * Completed Intro Page, About, Posts Listing * Changes build and development scripts --- .eleventy.js | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to '.eleventy.js') diff --git a/.eleventy.js b/.eleventy.js index 554bb54..e5d8260 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -1,13 +1,26 @@ /*jshint esversion: 6 */ const dayjs = require("dayjs"); +const faviconPlugin = require("eleventy-favicon"); +const eleventyPluginFeathericons = require('eleventy-plugin-feathericons'); +const syntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight"); module.exports = function (config) { - config.addPassthroughCopy("./src/css"); - config.addWatchTarget("./src/css"); + config.addPassthroughCopy({ + 'src/_includes/assets/css/styles.css': './styles.css' + }); config.addPassthroughCopy({ "src/css/fonts": "./fonts", }); + config.addPassthroughCopy({ + "src/images": "./images", + }); + config.addPlugin(faviconPlugin, { + destination: './public' + }); + config.addWatchTarget("./src/css"); + config.addPlugin(eleventyPluginFeathericons); + config.addPlugin(syntaxHighlight); config.addFilter("dateFilter", function (date) { return dayjs(date).format("DD MMM YYYY"); -- cgit v1.2.3