1.2.4 • Published 10 months ago

@iterate-ai/viteplugin v1.2.4

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Iterate Vite Plugin

Description

A Vite plugin that provides sourcemaps support for Iterate AI.

1. Installation

Choose your preferred package manager:

# Using npm
npm install @iterate-ai/viteplugin

# Using yarn
yarn add @iterate-ai/viteplugin

# Using pnpm
pnpm add @iterate-ai/viteplugin

2. Setup

Add the plugin to your Vite configuration file (vite.config.js or vite.config.ts):

import { defineConfig } from "vite";
import { iterateVitePlugin } from "@iterate-ai/viteplugin";

export default defineConfig({
  plugins: [
    iterateVitePlugin({
      apiKey: "YOUR_API_KEY", // Your unique API key
      project: "YOUR_PROJECT_NAME", // The name of your project
      organization: "YOUR_ORG_NAME", // Your organization's name
    }),
  ],
  build: {
    sourcemap: true, // Enable source maps
  },
});

3. Configuration Details

OptionDescriptionRequired
apiKeyYour API key
projectName of your project
organizationName of your organization

1.2.0

10 months ago

1.2.4

10 months ago

1.2.3

10 months ago

1.2.2

10 months ago

1.2.1

10 months ago

1.1.6

10 months ago

1.1.5

10 months ago

1.1.4

10 months ago

1.1.3

10 months ago

1.1.2

11 months ago

1.1.1

12 months ago

1.1.0

12 months ago

1.0.0

12 months ago