From 2ab1fffc0b37e3e96b75ef369ae554eed94cf0b4 Mon Sep 17 00:00:00 2001 From: web-padawan Date: Sat, 16 Apr 2016 19:50:49 +0300 Subject: [PATCH] remove semicolons --- lib/local-web-server.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/local-web-server.js b/lib/local-web-server.js index 2aa5f49..17d08ac 100644 --- a/lib/local-web-server.js +++ b/lib/local-web-server.js @@ -166,13 +166,13 @@ function localWebServer (options) { /* for any URL not matched by static (e.g. `/search`), serve the SPA */ if (options.spa) { - const historyApiFallback = require('koa-connect-history-api-fallback'); + const historyApiFallback = require('koa-connect-history-api-fallback') debug('SPA', options.spa) app.use(historyApiFallback({ index: options.spa, verbose: options.verbose, rewrites: options.rewrite - })); + })) } /* serve static files */