1.2.2 • Published 2 years ago
@atoms-studio/nuxt-redirects v1.2.2
@atoms-studio/nuxt-redirects
A Nuxt module that allows for redirect management using a simple CSV file, it leverages zod-csv under the hood for validation, handling both punctual and regex redirects. An example CSV file can be found here.
Quick Setup
- Add the @atoms-studio/nuxt-redirectsdependency to your project.
# Using pnpm
pnpm add -D @atoms-studio/nuxt-redirects
# Using yarn
yarn add --dev @atoms-studio/nuxt-redirects
# Using npm
npm install --save-dev @atoms-studio/nuxt-redirects- Add @atoms-studio/nuxt-redirectsto themodulessection of yournuxt.config.tsfile.
export default defineNuxtConfig({
  modules: ["@atoms-studio/nuxt-redirects"],
});That's it! You can now start using it 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 releaseLicense
Licensed under the MIT License.