Socket
Book a DemoInstallSign in
Socket

vite-plugin-enhance

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package version was removed
This package version has been unpublished, mostly likely due to security reasons

vite-plugin-enhance

A powerful plugin to enhance Vite's capabilities, enabling seamless integration of advanced features for modern web development.

unpublished
npmnpm
Version
1.0.1
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

vite-plugin-enhance

npm version

vite-plugin-enhance is a powerful plugin designed to extend and optimize Vite’s capabilities. It enables seamless integration of advanced development features for building modern, high-performance web applications.

Features

  • Enhances Vite with modular plugin capabilities
  • Optimized build and performance configurations
  • Seamless integration with modern frontend tools
  • Zero-config setup with advanced defaults
  • Supports tree-shaking, code-splitting, and asset optimizations
  • Fully compatible with TypeScript

Installation

Using npm:

npm install vite-plugin-enhance --save-dev

Using Yarn:

yarn add vite-plugin-enhance -D

Usage

Add the plugin to your vite.config.js or vite.config.ts:

import { defineConfig } from "vite";
import enhance from "vite-plugin-enhance";

export default defineConfig({
  plugins: [
    enhance({
      enableOptimization: true,
      enableDiagnostics: false,
    }),
  ],
});

Configuration Options

OptionTypeDefaultDescription
enableOptimizationbooleantrueEnables default build optimizations
enableDiagnosticsbooleanfalseEnables additional logs and performance metrics
customPluginsarray[]Inject custom Vite plugins to extend behavior

Example Output

[vite-plugin-enhance] 🚀 Optimization enabled
[vite-plugin-enhance] ✅ Integrated 3 custom plugins

License

MIT © [devin-ta39]

Contributing

Have ideas or improvements? Contributions are welcome! Feel free to open an issue or submit a PR.

Keywords

vite

FAQs

Package last updated on 25 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts