反应react-localize-redux从包中排除翻译

时间:2019-07-04 08:55:26

标签: reactjs webpack react-redux bundle react-localize-redux

在我的React应用程序中,我使用react-localize-redux库。本地化文件位于单独的.json文件中。构建Webpack之后,此文件位于捆绑包的“内部”。如何从捆绑包中排除此文件,以便继续从单独的文件中进行翻译。

我正在尝试这样,但这没有帮助:

...
module: {
        rules: [
            {
                test: /\.jsx$/,
                exclude: [/node_modules/, path.resolve(__dirname, 'Scripts/reactApp/translations/he.translations.json')],
                use: {
                    loader: "babel-loader"
                }
            }
...

0 个答案:

没有答案