From 46e088d0fbff35c0459b8ac35cb61ced66df2d28 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 4 Sep 2014 14:58:56 +0200 Subject: [PATCH] Add express/gulp url for serve plugins directory in development server. --- gulpfile.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.coffee b/gulpfile.coffee index 379f386a..f8364b04 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -215,6 +215,7 @@ gulp.task "express", -> app.use("/images", express.static("#{__dirname}/dist/images")) app.use("/partials", express.static("#{__dirname}/dist/partials")) app.use("/fonts", express.static("#{__dirname}/dist/fonts")) + app.use("/plugins", express.static("#{__dirname}/dist/plugins")) app.all "/*", (req, res, next) -> # Just send the index.html for other files to support HTML5Mode