Restrict template formats to js only

This commit is contained in:
Sam Carlton 2021-05-08 17:56:41 -05:00
parent 7698df87af
commit 2dc8caa5d2

View file

@ -107,6 +107,10 @@ module.exports = function ( eleventyConfig ) {
return { return {
// https://www.11ty.dev/docs/config/#template-formats
// Default: html,liquid,ejs,md,hbs,mustache,haml,pug,njk,11ty.js
templateFormats: [ '11ty.js' ],
dir: { dir: {
input: 'pages-eleventy', input: 'pages-eleventy',
output: 'dist', output: 'dist',