snowpack-plugin-replace
v1.0.4
Published
replace your code
Downloads
476
Maintainers
Readme
snowpack-plugin-replace
replace your code
Usage
Install
npm install --save-dev snowpack-plugin-replace
Config
add this plugin to your Snowpack config:
snowpack.config.js
{
plugins: [[
'snowpack-plugin-replace',
{
list: [
{
from: 'process.env',
to: 'import.meta.env'
}
],
},
]]
}
options:
- from:
string
orRegExp
- to:
string
- file:
string
optional specify file path. its should be a full pathFor Example:
require.resolve('./index.js')