New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

vite-plugin-define-process-env

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

vite-plugin-define-process-env

A vite plugin for define env

unpublished
latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

vite-plugin-define-process-env

介绍

Vue-cli 项目迁移到 vite 时,需要将原有的环境变量前缀从 VUE_APP_ 修改为 VITE_ ,同时将业务代码中的 process.env.VUE_APP_XXX 修改为 import.meta.env.VITE_XXX 。如果你不想手动完成这一工作,可以尝试使用本插件,不需要修改任何业务代码即可轻松完成环境变量的迁移和使用。

同时,如果你不喜欢 vite 将环境变量定义到 import.meta.env 这一方式,你也可以使用本插件来代替 define 这一配置项。

安装

npm i vite-plugin-define-process-env -D

yarn add vite-plugin-define-process-env -D

使用

// vite.config.ts
import { defineConfig } from "vite";
import vitePluginDefineProcessEnv from "vite-plugin-define-process-env";

export default defineConfig({
  ...
  plugins: [vitePluginDefineProcessEnv()]
});

配置项

interface Options {
  path: string; // .env 文件所在的目录,默认为跟目录
  key: string; // 要定义的环境变量名称,默认为 process.env
}

Keywords

vite-plugin

FAQs

Package last updated on 03 Mar 2022

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