@noahyu/nuxt-fetch
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

@noahyu/nuxt-fetch

Usage

npm install @noahyu/nuxt-fetch --save
# or
pnpm add @noahyu/nuxt-fetch -P

Quick start

// nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    [
      '@noahyu/nuxt-fetch',
      {
        '/api': {
          pathRewrite: {
            '^/api': 'api',
          },
          apiHostEnv: 'API_HOST',
          apiHostUrl: 'http://api.com',
          cookieName: 'access_token',
        },
        '/api2': {
          pathRewrite: {
            '^/api2': '/api',
          },
          apiHostEnv: 'API_HOST',
          apiHostUrl: 'http://api2.com',
          cookieName: 'access_token',
        },
      },
    ],
  ],
})
const { data, pending, error, refresh } = await useFetch('/api/example')

// http://localhost/api/example => http://myapi.com/api/example

License

MIT

Copyright (c) 2023-present, Noah Yu

Readme

Keywords

Package Sidebar

Install

npm i @noahyu/nuxt-fetch

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

7.59 kB

Total Files

12

Last publish

Collaborators

  • noahyu