1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 11:16:12 +04:00

init docs app

This commit is contained in:
codecalm
2025-02-05 00:03:38 +01:00
parent 61beafe3eb
commit c1eb103c62
5 changed files with 73 additions and 0 deletions

16
docs/eleventy.config.mjs Normal file
View File

@@ -0,0 +1,16 @@
/** @type {import('@11ty/eleventy').LocalConfig} */
export default function (eleventyConfig) {
eleventyConfig.addPassthroughCopy({
"node_modules/@tabler/core/dist": "core",
"pages/favicon.ico": "favicon.ico",
});
eleventyConfig.setLiquidOptions({
timezoneOffset: 0,
jekyllInclude: true,
dynamicPartials: true,
jekyllWhere: true,
});
};