Skip to content

Commit 385243d

Browse files
authoredNov 25, 2024··
Merge pull request #166 from nook24/vitepress
Refactor Naemon Website with VitePress
2 parents bb50db8 + bf9feab commit 385243d

File tree

471 files changed

+1312
-1190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

471 files changed

+1312
-1190
lines changed
 

‎.env

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
VITE_RELEASE_VERSION=1.4.3
2+
VITE_RELEASE_DATE=19 Nov 2024

‎.gitignore

+45-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,45 @@
1-
_site
2-
.bundle
3-
.gem
4-
Gemfile.lock
1+
# Thanks to CakePHP for the good .gitignore
2+
# https://github.com/cakephp/cakephp/blob/33626a03197758f30a8ce8c2e0a75ed8ddbce40a/.gitignore
3+
4+
# VitePress files #
5+
##################
6+
node_modules
7+
package-lock.json
8+
.vitepress/cache
9+
.vitepress/dist
10+
11+
# OS generated files #
12+
######################
13+
.DS_Store
14+
.DS_Store?
15+
._*
16+
.Spotlight-V100
17+
.Trashes
18+
Icon?
19+
ehthumbs.db
20+
Thumbs.db
21+
*Zone.Identifier
22+
23+
# Tool specific files #
24+
#######################
25+
# vim
26+
*~
27+
*.swp
28+
*.swo
29+
# sublime text & textmate
30+
*.sublime-*
31+
*.stTheme.cache
32+
*.tmlanguage.cache
33+
*.tmPreferences.cache
34+
# Eclipse
35+
.settings/*
36+
/.project
37+
/.buildpath
38+
# JetBrains, aka PHPStorm, IntelliJ IDEA
39+
.idea/*
40+
# NetBeans
41+
nbproject/*
42+
# Visual Studio Code
43+
.vscode
44+
45+

0 commit comments

Comments
 (0)
Please sign in to comment.