craco plugin to apply interpolate-html to create-react-app
# npm
$ npm install craco-interpolate-html-plugin
# yarn
$ yarn add craco-interpolate-html-plugin
// craco.config.js
// @see https://github.com/sharegate/craco/blob/master/packages/craco/README.md#configuration-overview
const interpolateHtml = require('craco-interpolate-html-plugin');
module.exports = {
plugins: [
{
plugin: interpolateHtml,
// Enter the variable to be interpolated in the html file
options: {
preText: 'This is Interpolate Html Option',
},
},
],
};
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Test</title>
</head>
<body>
<!-- using preText -->
<div>%preText%</div>
</body>
</html>
MIT