rename client-new to client and add README

This commit is contained in:
Matteo Pagliazzi
2016-09-14 16:43:11 +02:00
parent 6bddef6878
commit 33bcb40077
5 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -16,5 +16,5 @@ module.exports = function staticMiddleware (expressApp) {
expressApp.use(express.static(PUBLIC_DIR));
// Expose new client when not in production
if (!IS_PROD) expressApp.use('/new-app', express.static(`${PUBLIC_DIR}/../client-new`));
if (!IS_PROD) expressApp.use('/new-app', express.static(`${PUBLIC_DIR}/../client`));
};