据我所知,Create React App使用HTMLWebpackPlugin。是否可以在CRA模板中定义参数以在index.html文件(我的应用程序的HTML模板)中使用它们。如果是这样,怎么办?一般来说,我想定义参数/变量并在index.html中使用它有条件地注入脚本:
<% if (htmlWebpackPlugin.options.templatesParameters.GA) { %>
<script> ... some GA code ...</script>
<% } %>