From 05fea68f82509136a3b10fd81e3fe7ab09d05d20 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 26 Dec 2016 11:53:55 +0200 Subject: [PATCH] chore(route) DIR_SERVER: __dirname -> ./ --- server/route.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/route.js b/server/route.js index 38cfcd4d..25bce7ab 100644 --- a/server/route.js +++ b/server/route.js @@ -5,7 +5,7 @@ const DIR_TMPL = DIR + 'tmpl/'; const DIR_HTML = DIR + 'html/'; const DIR_COMMON = DIR + 'common/'; const DIR_JSON = DIR + 'json/'; -const DIR_SERVER = __dirname + '/'; +const DIR_SERVER = './'; const DIR_FS = DIR_TMPL + 'fs/'; const fs = require('fs');