Skip to content

Commit

Permalink
Merge pull request #52 from jide/master
Browse files Browse the repository at this point in the history
Fix docs for loaders
  • Loading branch information
arunoda authored Nov 5, 2016
2 parents ebfd061 + 937289f commit 64f2c38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ For that, first create a file called `loaders.js` in your project root. Then add
var loaders = module.exports = {};

// to support css modules
loaders['.css'] = function(path) {
loaders['css'] = function(path) {
return {};
};

// to support jpeg files
loaders['.jpeg'] = function(path) {
loaders['jpeg'] = function(path) {
return path;
}
```
Expand Down

0 comments on commit 64f2c38

Please sign in to comment.