mirror of
https://github.com/hacks-guide/Guide_3DS.git
synced 2024-11-23 09:29:51 +00:00
9446e2123a
- Add theme submodule - Add initial configuration files - Override theme-default VPHero/VPFooter with custom theme version - Update README
31 lines
702 B
JavaScript
31 lines
702 B
JavaScript
/*
|
|
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)
|
|
)
|
|
}
|
|
]
|
|
}
|
|
},
|
|
})
|