nuxt-paraglide-js
v0.1.0
Published
Paraglide JS module for Nuxt
Downloads
2
Readme
Nuxt Paraglide JS
Translate your project using this Paraglide JS module for Nuxt.
Quick Setup
- Add
nuxt-paraglide-js
dependency to your project
# Using pnpm
pnpm add -D nuxt-paraglide-js
# Using yarn
yarn add --dev nuxt-paraglide-js
# Using npm
npm install --save-dev nuxt-paraglide-js
- Add
nuxt-paraglide-js
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-paraglide-js'
]
})
That's it! You can now use Nuxt Paraglide JS in your Nuxt app ✨
Development
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release