Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 539 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 539 Bytes

vite-plugin-coffee3

Coffeescript plugin for Vite that generates version 3 source maps

There is a an existing vite-plugin, but the source maps generated by this plugin are not used by modern vite. This plugin solves the issue.

Usage

// vite.config.js
import { defineConfig } from "vite";
import coffee from "vite-plugin-coffee3";

export default defineConfig({
  plugins: [
    coffee(),
  ],
});

Installation

npm install --save-dev vite-plugin-coffee3