Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/l422y/nuxt-example-dynamic-seo
Nuxt 3 Dynamic SEO Pages Example
https://github.com/l422y/nuxt-example-dynamic-seo
nuxt seo typescript vue
Last synced: 16 days ago
JSON representation
Nuxt 3 Dynamic SEO Pages Example
- Host: GitHub
- URL: https://github.com/l422y/nuxt-example-dynamic-seo
- Owner: L422Y
- Created: 2024-01-04T22:32:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-04T23:06:41.000Z (about 1 year ago)
- Last Synced: 2024-11-12T13:11:41.167Z (3 months ago)
- Topics: nuxt, seo, typescript, vue
- Language: Vue
- Homepage: https://stackblitz.com/edit/github-mkaq9g
- Size: 87.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt 3 Dynamic SEO Pages Example
Made for `dev.static` on [Nuxt discord.](https://discord.com/channels/473401852243869706/1192576106038042644)
No sitemap implementation ;)
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install# bun
bun install
```## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev# pnpm
pnpm run dev# yarn
yarn dev# bun
bun run dev
```## Production
Build the application for production:
```bash
# npm
npm run build# pnpm
pnpm run build# yarn
yarn build# bun
bun run build
```Locally preview production build:
```bash
# npm
npm run preview# pnpm
pnpm run preview# yarn
yarn preview# bun
bun run preview
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.