mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
19 lines
417 B
JavaScript
19 lines
417 B
JavaScript
// const eleventyVue = require("@11ty/eleventy-plugin-vue");
|
|
|
|
|
|
module.exports = function ( eleventyConfig ) {
|
|
// eleventyConfig.addPlugin(eleventyVue)
|
|
|
|
|
|
return {
|
|
dir: {
|
|
input: 'pages-eleventy',
|
|
output: 'dist',
|
|
jsDataFileSuffix: '.json',
|
|
|
|
// Relative to input directory.
|
|
data: '../static',
|
|
layouts: '../layouts'
|
|
}
|
|
}
|
|
}
|