Skip to content

Commit

Permalink
basic ui and settup
Browse files Browse the repository at this point in the history
  • Loading branch information
MoNouri97 committed Mar 21, 2021
1 parent f8eb25b commit 49a63f9
Show file tree
Hide file tree
Showing 41 changed files with 7,955 additions and 55 deletions.
15 changes: 10 additions & 5 deletions .eleventy.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
const eleventyNavigationPlugin = require('@11ty/eleventy-navigation')

module.exports = (config) => {
config.addPassthroughCopy({ 'public': './' })
config.addPassthroughCopy({ public: './' })
config.addPlugin(eleventyNavigationPlugin)

config.setBrowserSyncConfig({
files: ['dist/**/*'],
open: true,
Expand All @@ -8,14 +12,15 @@ module.exports = (config) => {
rule: {
match: /<\/head>/i,
fn: function (snippet, match) {
return snippet + match;
}
}
}
return snippet + match
},
},
},
})
config.setDataDeepMerge(true)

return {
templateFormats: ['md', 'njk', 'html', 'liquid'],
dir: {
input: 'src',
output: 'dist',
Expand Down
Loading

0 comments on commit 49a63f9

Please sign in to comment.