summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app.js2
-rw-r--r--views/head.html12
2 files changed, 7 insertions, 7 deletions
diff --git a/app.js b/app.js
index 5682cbc..a842d48 100644
--- a/app.js
+++ b/app.js
@@ -23,7 +23,7 @@ app.engine('html',ejs.renderFile);
//Set Static public folder
-app.use('/static',express.static(path.join(__dirname,'public')));
+app.use('/ngStatic',express.static(path.join(__dirname,'public')));
//Set Port to run the app
app.set('port',process.env.PORT||3000);
diff --git a/views/head.html b/views/head.html
index 0512ceb..6372566 100644
--- a/views/head.html
+++ b/views/head.html
@@ -2,21 +2,21 @@
<meta charset="UTF-8">
<title><%= title %></title>
<!-- Bootstrap core CSS -->
-<link rel="stylesheet" href="/static/css/bootstrap.min-3.3.6.css">
+<link rel="stylesheet" href="/ngStatic/css/bootstrap.min-3.3.6.css">
<!-- Custom styles for this template -->
-<link href="/static/css/customstylesheet.css" rel="stylesheet">
+<link href="/ngStatic/css/customstylesheet.css" rel="stylesheet">
<!--Favicon-->
-<link rel="shortcut icon" href="/static/images/favicon.ico" />
+<link rel="shortcut icon" href="/ngStatic/images/favicon.ico" />
<!-- <script src="/socket.io/socket.io.js"></script> -->
<script src="https://cdn.socket.io/socket.io-1.4.5.js"></script>
-<script src="/static/js/plotly-latest.min.js"></script>
+<script src="/ngStatic/js/plotly-latest.min.js"></script>
<!-- Bootstrap JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
-<script>window.jQuery || document.write('<script src="/static/js/jquery.min.js"><\/script>')</script>
+<script>window.jQuery || document.write('<script src="/ngStatic/js/jquery.min.js"><\/script>')</script>
<!-- Bootstrap core JS -->
-<script src="/static/js/bootstrap.min-3.3.6.js"></script> \ No newline at end of file
+<script src="/ngStatic/js/bootstrap.min-3.3.6.js"></script> \ No newline at end of file