590a3724179db735d1e947d5398ce19e38d557f4
Nuxt Minimal Starter
Look at the Nuxt documentation to learn more.
Setup
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Development Server
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
Production
Build the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.
Favicons
The SVG favicon is the source of truth: public/favicon.svg
.
Generate a multi-size favicon.ico
from the SVG using rsvg-convert + ImageMagick:
yarn favicons
Notes:
- ImageMagick on macOS can have issues loading arbitrary TTFs by file path (RenderFreetype errors). To avoid font lookup issues entirely, this project rasterizes the SVG directly using
rsvg-convert
and then packages the sizes into a single ICO using ImageMagick. - If browsers fail to load webfonts in an external SVG, consider converting the “b” glyph to paths inside the SVG to guarantee pixel-identical rendering across formats.
Description
Languages
Vue
74.3%
Shell
11.9%
CSS
6.3%
TypeScript
5.4%
Just
2.1%