https://github.com/byloth/nuxtplate
A @nuxt 4 template app based on @vitejs, @vuejs with TypeScript, Pinia and more.
https://github.com/byloth/nuxtplate
Last synced: 5 months ago
JSON representation
A @nuxt 4 template app based on @vitejs, @vuejs with TypeScript, Pinia and more.
- Host: GitHub
- URL: https://github.com/byloth/nuxtplate
- Owner: Byloth
- Created: 2025-02-07T17:08:39.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-09-13T13:20:52.000Z (9 months ago)
- Last Synced: 2025-10-22T04:58:48.408Z (8 months ago)
- Language: Vue
- Homepage: https://byloth.github.io/nuxtplate/
- Size: 310 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Byloth's Nuxtplate
A Nuxt.js 4 template app with TypeScript, Pinia, SASS and more.
## Configuration
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install dependencies:
```bash
bun install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
bun run dev
```
Lint the code using [ESLint](https://eslint.org/):
```bash
bun run lint
```
## Production
Build the application for production to be served as a Node.js server:
```bash
bun run build
```
Build the application from production to be served as a static site:
```bash
bun run generate
```
Locally preview production build on `http://localhost:3000`:
```bash
bun run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.