JSPM

@nemi-fi/vite-plugin-aztec

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q19972F
  • License MIT

Vite plugin for Aztec

Package Exports

  • @nemi-fi/vite-plugin-aztec
  • @nemi-fi/vite-plugin-aztec/src/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@nemi-fi/vite-plugin-aztec) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Vite plugin for Aztec

Makes "@aztec/aztec.js" work with Vite.

Installation

npm install @nemi-fi/vite-plugin-aztec -D

Usage

@aztec packages versions must be pinned in order for this plugin to work correctly. So, remove ^ symbols from package.json:

- "@aztec/aztec.js": "^0.71.0",
+ "@aztec/aztec.js": "0.71.0",

And add aztec to your list of plugins:

import { aztec } from "@nemi-fi/vite-plugin-aztec";

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