We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 50f01fc + 028c736 commit b794c8eCopy full SHA for b794c8e
examples/isomorphic-flux-chat/package.json
@@ -6,6 +6,7 @@
6
"author": "Jordan Garcia",
7
"license": "ISC",
8
"dependencies": {
9
+ "json-loader": "^0.5.3",
10
"keymirror": "^0.1.1",
11
"nuclear-js": "^1.1.1",
12
"nuclear-js-react-addons": "jordangarcia/nuclear-js-react-addons#051c39b10c4af9af7007216b06fccbdf79994529",
examples/isomorphic-flux-chat/webpack.config.js
@@ -55,6 +55,9 @@ module.exports = [{
55
// don't try to load them ... just make the require calls not break
56
test: /\.css$/,
57
loader: 'css',
58
+ }, {
59
+ test: /\.json$/,
60
+ loader: "json-loader"
61
}],
62
},
63
0 commit comments