我的react
/ redux
应用程序在webpack
上运行,并且希望使用moment-timezone
库。我已经在SO中检查了How should I use moment-timezone with webpack?问题,并按照问题中的描述安装了json-loader
。但仍然需要在我的申请中moment-timezone
作为:
const momentTz = require('moment-timezone');
它引发了一个错误:
ERROR in ./~/moment-timezone/index.js
Module not found: Error: Cannot resolve 'file' or 'directory' /path-to-the-project/node_modules/moment-timezone
@ ./~/moment-timezone/index.js 2:15-51
@ ./~/moment-timezone/index.js 2:15-51
的位置:
moment.tz.load(require('./data/packed/latest.json'));
然而,当我从构建文件夹中包含缩小版本时,它正常工作,如:
const momentTz = require('moment-timezone/builds/moment-timezone-with-data.min');
webpack配置:
let jsonLoader = require('json-loader');
loaders: [
{
include: /\.json$/,
loaders: [jsonLoader]
}
]
答案 0 :(得分:3)
我的问题是在webpack
配置中。问题是我在webpack配置中需要json-loader
并将其作为对象而不是字符串传递,因此将其更改为字符串修复了问题:
loaders: [
{
include: /\.json$/,
loaders: ['json-loader']
}
]