Naninovel Web Resources
This project is used to host online documentation and tracking tools for Naninovel visual novel engine.
How to Run Locally
- Install nodejs https://nodejs.org
- Fork this repository on Github
- Install npm dependencies
npm install
- Build the project
npm run docs:build
- Launch local web server
npm run docs:dev
- Access with a web browser http://localhost:8080/
How to Upgrade VuePress
- Delete
docs/.vuepress/theme
- Upgrade vuepress
- Run
yarn run eject
- Edit
theme/Navbar.vue
replacing
<RouterLink
:to="$localePath"
class="home-link"
>
...
</RouterLink>
with
<a href="https://naninovel.com">
...
</a>
- Edit
theme/layouts/404.vue
replacing
<RouterLink to="/">
...
</RouterLink>
with
<a href="https://naninovel.com">
...
</a>