-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundle.toml
More file actions
38 lines (33 loc) · 916 Bytes
/
bundle.toml
File metadata and controls
38 lines (33 loc) · 916 Bytes
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
# Asset bundling configuration
# This file defines which CSS and JavaScript files should be bundled together
[bundles]
# CSS bundles
[bundles.css]
# Main CSS bundle for the CV and index pages
main = [
"css/base/reset.css",
"css/base/variables.css",
"css/layout/layout.css",
"css/components/header.css",
"css/components/footer.css",
"css/components/navigation.css",
"css/components/buttons.css",
"css/components/cards.css",
"css/components/accordion.css",
"css/components/social.css",
"css/utilities/utilities.css",
"css/main.css",
"css/nerd-fonts.css",
"css/nerd-icons.css"
]
# Syntax highlighting CSS
syntax = ["prism.css"]
# JavaScript bundles
[bundles.js]
# Main JavaScript bundle for the CV and index pages
main = ["js/scripts.js"]
# Syntax highlighting JavaScript
syntax = ["prism.js"]
# Output directory for bundled files
[output]
directory = "dist"