notherbase-fs 1.1.22 → 1.1.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notherbase-fs",
3
- "version": "1.1.22",
3
+ "version": "1.1.23",
4
4
  "description": "Functions to help make developing for NotherBase easier.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/server.js CHANGED
@@ -27,6 +27,7 @@ module.exports = function start(frontRouter, exploreRouter) {
27
27
 
28
28
  // allows us to get static files like css
29
29
  app.use(express.static('public'));
30
+ app.use(express.static(`${__dirname}/public`));
30
31
 
31
32
  // sets the favicon image
32
33
  const favicon = require('serve-favicon');