-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
56 lines (49 loc) · 1.06 KB
/
_config.yml
File metadata and controls
56 lines (49 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# GitHub Pages Configuration for MicroUI
# This file ensures proper GitHub Pages deployment
# when using the automated GitHub Actions workflow
# Site metadata
title: MicroUI - Pure Vanilla JavaScript Library
description: A lightweight, modern JavaScript utility library that makes DOM manipulation and event handling simple and efficient. Only 5.2KB gzipped.
url: https://lam0819.github.io
baseurl: /microui
# Build settings
markdown: kramdown
highlighter: rouge
plugins:
- jekyll-sitemap
- jekyll-feed
# Include/Exclude settings
include:
- .nojekyll
- llms.txt
- dist/
- examples/
exclude:
- node_modules/
- src/
- tests/
- scripts/
- .github/
- package*.json
- rollup.config.js
- jest.config.js
- .eslintrc.js
- .gitignore
- PROJECT-STATUS.md
# Collection settings
collections:
examples:
output: true
permalink: /:collection/:name/
# Default layouts
defaults:
- scope:
path: ""
type: "pages"
values:
layout: "default"
- scope:
path: "examples"
type: "examples"
values:
layout: "example"