public/README.md
eggy e79f634d22 feat: add nuxt-zero-js
This saves us one step in the build process although doesn't fix the root problem.
2022-09-11 08:53:26 -04:00

39 lines
782 B
Markdown

# Eggworld v3: Nuxt 3
After hand-written HTML and a static site generator comes Nuxt!
**WARN: Volar 0.40.0 breaks all type-checking and I don't know why — stick with Volar 0.39.5.**
Post-build instructions (while prerendering is bork)
- Compile `/script.ts` to `/script.js` (`tsc script.ts -m esnext -t esnext --moduleReslution node`)
Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install
```
## Development Server
Start the development server on http://localhost:3000
```bash
yarn dev
```
## Production
Locally preview production build:
```bash
yarn preview
```
Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.