我想用相同的URL支持多种语言的网站。因此,我需要添加翻译加载器(例如:opencc)并生成多个以国家/地区名称结尾的js文件。
例如:index.js => indexEng.js, indexCn.js, indexTW.js
。
这是我的webpack.config.js
....,
output: {
filename: '[name].js',
},
module:{
rules:[{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: ['babel-loader', 'opencc-loader?translation=taiwanToSimplified']
}]
}
我尝试了几次,但都失败了。 我该怎么办?