Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
grullo90 committed Apr 28, 2017
1 parent bbf82ff commit 22d8314
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ let router = Router({caseSensitive: true, strict: true});
if (production) { router.use('/', Static(`${__dirname}/build/unbundled`)); }

// Static (development)
router.use('/bower_components', Static(`${__dirname}./bower_components`));
router.use('/bower_components', Static(`${__dirname}./node_modules`));
router.use('/bower_components', Static(`${__dirname}/../bower_components`));
router.use('/bower_components', Static(`${__dirname}/../node_modules`));
router.use('/bower_components', Static(`${__dirname}/bower_components`));
router.get('/service-worker.js', (req, res) => new Responder({data: '', mode: 'js', response: res}).send());
router.use('/src', Static(`${__dirname}/src`));
Expand Down

0 comments on commit 22d8314

Please sign in to comment.