Skip to content

Commit

Permalink
Merge pull request BrowserSync#454 from kaesetoast/master
Browse files Browse the repository at this point in the history
fix typo in middleware examples
  • Loading branch information
shakyShane committed Feb 16, 2015
2 parents 315e6de + 142756c commit 9da058b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/proxy.middleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ browserSync({
files: ["app/css/*.css"],
proxy: {
target: "http://yourlocal.dev",
middeware: function (req, res, next) {
middleware: function (req, res, next) {
console.log(req.url);
next();
}
Expand Down
2 changes: 1 addition & 1 deletion examples/proxy.middleware.multi.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ browserSync({
files: ["app/css/*.css"],
proxy: {
target: "http://yourlocal.dev",
middeware: [fn1, fn2]
middleware: [fn1, fn2]
},
https: true
});

0 comments on commit 9da058b

Please sign in to comment.