Webpack将一些文本注入网站

时间:2019-02-14 13:05:05

标签: webpack internationalization

我想在我的网站上提供英国和美国版本的备用文本

我想做的第一件事就是更改标题

<title>This is the US version</title>
<title>This is the UK version</title>

然后我可以更改简介

    <h1>Hello from the UK</h1>
or 
    <h1>Greetings from the US</h1>

是否可以从Webpack中选择文本文件。我真的不需要完全的国际化,我只需要能够根据构建选择一个文本文件。

1 个答案:

答案 0 :(得分:0)

您可以使用html-webpack-plugin

来自docs

Expected mock function to have been called, but it was not called.