parcel-plugin-interpolate-html
Parcel plugin that interpolates ENV in HTML files
Installation
yarn add --dev parcel-plugin-interpolate-html
or
npm i -d parcel-plugin-interpolate-html
Attention: parcel-bundler has to be installed
Usage
There is no need to enable the plugin in any configuration file. If you want to use it you can do so after installing.
You have to escape the ENV with %% around it e.g. %example%
.
Example
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>%title%</title>
</head>
</html>
.env
title=Example
run it
parcel index.html
output
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Example</title>
</head>
</html>