Skip to content

Commit dcc0fcc

Browse files
Merge pull request #54 from DSACMS/natalia/deployment
Removed vite plugin due to passthrough copy bug
2 parents 742ee09 + b2d8c86 commit dcc0fcc

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

app/.eleventy.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
const fs = require("fs")
22
const path = require("path")
33
const Image = require("@11ty/eleventy-img")
4-
const EleventyVitePlugin = require("@11ty/eleventy-plugin-vite")
54
const lucideIcons = require("@grimlink/eleventy-plugin-lucide-icons");
65
const { baseurl } = require("./site/_data/site");
76
require("dotenv").config()
@@ -76,10 +75,9 @@ module.exports = function (eleventyConfig) {
7675
"src/css": "css",
7776
"site/_graphs": "assets/img/graphs",
7877
"node_modules/@uswds/uswds/dist/img": "assets/img",
79-
})
78+
});
8079

8180
eleventyConfig.setLiquidOptions({ outputEscape: "escape" })
82-
eleventyConfig.addPlugin(EleventyVitePlugin)
8381
eleventyConfig.addPlugin(lucideIcons, {
8482
"class": "custom-class",
8583
"width": 17,
@@ -99,6 +97,6 @@ module.exports = function (eleventyConfig) {
9997
},
10098
templateFormats: ["html", "md", "liquid", "11ty.js"],
10199
passthroughFileCopy: true,
102-
pathPrefix,
100+
pathPrefix
103101
}
104102
}

0 commit comments

Comments
 (0)