Skip to content

Commit

Permalink
Remove errant integers, fix config variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
wesley-dean-gsa authored Jul 30, 2024
1 parent 04a900b commit 3f6ff0d
Showing 1 changed file with 2 additions and 22 deletions.
24 changes: 2 additions & 22 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,33 +13,13 @@ const { imageShortcode, imageWithClassShortcode } = require('./config');

module.exports = function (config) {
// Set pathPrefix for site
let pathPrefix = '/';22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40


let pathPrefix = '/';
// Copy the `admin` folders to the output
config.addPassthroughCopy('admin');

// for #80 (update site favicon)
// copy files from `_img/favicon/` to `_site/`
eleventyConfig.addPassthroughCopy({ "_img/favicon": "/" });
config.addPassthroughCopy({ "_img/favicon": "/" });

// Copy USWDS init JS so we can load it in HEAD to prevent banner flashing
config.addPassthroughCopy({'./node_modules/@uswds/uswds/dist/js/uswds-init.js': 'assets/js/uswds-init.js'});
Expand Down

0 comments on commit 3f6ff0d

Please sign in to comment.