-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add theme submodule - Add initial configuration files - Override theme-default VPHero/VPFooter with custom theme version - Update README
- Loading branch information
1 parent
afcba54
commit 9446e21
Showing
7 changed files
with
2,424 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,14 @@ | ||
# Vim | ||
*~ | ||
*.sw[p_] | ||
|
||
# Sublime Text | ||
*.sublime-project | ||
*.sublime-workspace | ||
|
||
# Ruby Gem | ||
*.gem | ||
.bundle | ||
Gemfile.lock | ||
**/vendor/bundle | ||
|
||
# Node.js and NPM | ||
node_modules | ||
npm-debug.log* | ||
package-lock.json | ||
codekit-config.json | ||
|
||
# VitePress | ||
docs/.vitepress/cache | ||
docs/.vitepress/dist | ||
|
||
# macOS | ||
.DS_Store | ||
|
||
# Jekyll generated files | ||
.jekyll-cache | ||
.jekyll-metadata | ||
.sass-cache | ||
_asset_bundler_cache | ||
_site | ||
|
||
# torrent stuff | ||
torrents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "docs/.vitepress/theme"] | ||
path = docs/.vitepress/theme | ||
url = https://github.com/hacks-guide/vitepress-theme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
Copyright (C) 2024 Nintendo Homebrew | ||
SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
import { fileURLToPath, URL } from 'node:url' | ||
import { defineConfig } from 'vitepress' | ||
|
||
export default defineConfig({ | ||
title: "3DS Hacks Guide", | ||
description: "A complete guide to 3DS custom firmware", | ||
vite: { | ||
resolve: { | ||
alias: [ | ||
{ | ||
find: /^.*\/VPHero\.vue$/, | ||
replacement: fileURLToPath( | ||
new URL('./theme/components/VPHero.vue', import.meta.url) | ||
) | ||
}, | ||
{ | ||
find: /^.*\/VPFooter\.vue$/, | ||
replacement: fileURLToPath( | ||
new URL('./theme/components/VPFooter.vue', import.meta.url) | ||
) | ||
} | ||
] | ||
} | ||
}, | ||
}) |
Oops, something went wrong.