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