From 9e49528d864f596f6383f62eab3cd116b1773a24 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 13 Mar 2023 15:29:59 -0700 Subject: [PATCH] cleanup + tweaks --- .eleventy.js | 6 ++---- package.json | 2 +- src/_includes/base.liquid | 1 - src/manifest.json | 26 -------------------------- 4 files changed, 3 insertions(+), 32 deletions(-) delete mode 100644 src/manifest.json diff --git a/.eleventy.js b/.eleventy.js index ad88fdb6..646e414c 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -41,10 +41,6 @@ module.exports = function (eleventyConfig) { // enable merging of tags eleventyConfig.setDataDeepMerge(true) - // copy these static files to _site folder - eleventyConfig.addPassthroughCopy('src/assets') - eleventyConfig.addPassthroughCopy('src/manifest.json') - // create excerpts eleventyConfig.setFrontMatterParsingOptions({ excerpt: true, @@ -84,6 +80,8 @@ module.exports = function (eleventyConfig) { passthroughFileCopy: true, dir: { input: 'src', + includes: '_includes', + data: '_data', output: '_site', }, } diff --git a/package.json b/package.json index 89d014f9..94dc4102 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "test": "echo \"Error: no test specified\" && exit 1", "lint": "eslint .", "lint:fix": "eslint . --fix", - "build": "eleventy && npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css" + "build": "ELEVENTY_PRODUCTION=true eleventy && NODE_ENV=production npx tailwindcss -i ./tailwind.css -c ./tailwind.config.js -o _site/assets/styles/tailwind.css" }, "keywords": [], "author": "Cory Dransfeldt", diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid index 39ca47b7..475d6839 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -14,7 +14,6 @@ - diff --git a/src/manifest.json b/src/manifest.json deleted file mode 100644 index aa4a02ee..00000000 --- a/src/manifest.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "Cory Dransfeldt", - "short_name": "coryd.dev", - "icons": [ - { - "src": "/assets/img/favicon/favicon-32x32.png", - "sizes": "32x32", - "type": "image/png", - "purpose": "any maskable" - }, - { - "src": "/assets/img/favicon/favicon-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "/assets/img/favicon/favicon-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "theme_color": "#bd93f9", - "background_color": "#fff", - "display": "standalone", - "start_url": "/" -}