remove semicolons

This commit is contained in:
web-padawan
2016-04-16 19:50:49 +03:00
committed by Lloyd Brookes
parent 0e81c0529b
commit 2ab1fffc0b

View File

@ -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 */