From e3c4a52412b292e2af50901c67abae41b44e4ad0 Mon Sep 17 00:00:00 2001 From: bvn13 Date: Sun, 21 Nov 2021 23:37:35 +0300 Subject: [PATCH] try to make pages work --- .eleventy.js | 4 ++-- .gitlab-ci.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.eleventy.js b/.eleventy.js index bc22ac3..a5c1db8 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -1,7 +1,7 @@ module.exports = function(eleventyConfig) { // assets we want to passthrough - + eleventyConfig.addPassthroughCopy('./src/main.css'); eleventyConfig.addPassthroughCopy('./src/lib/main.js'); eleventyConfig.addPassthroughCopy('./src/assets'); @@ -10,7 +10,7 @@ eleventyConfig.addPassthroughCopy('./src/assets'); return { dir: { input: "src", - output: "_site" + output: "public" } } }; \ No newline at end of file diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9c9cf78..1c86646 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,4 +5,4 @@ pages: - ls -Rla artifacts: paths: - - _site + - public