npm install --save-dev json-loader
⚠️ 注意:由于
webpack >= v2.0.0
默认支持导入 JSON 文件。如果你使用自定义文件扩展名,你可能仍然需要使用此 loader。See the v1.0.0 -> v2.0.0 Migration Guide for more information
const json = require('json-loader!./file.json');
通过配置
(推荐)const json = require('./file.json');
webpack.config.js
module.exports = {
module: {
loaders: [
{
test: /\.json$/,
loader: 'json-loader'
}
]
}
}
Tobias Koppers |