Skip to content

Commit f1cd57a

Browse files
author
hdngr
committed
branch of into 'advanced' course after this
1 parent ff97fe9 commit f1cd57a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
node_modules
1+
node_modules

app/frontend/js/.DS_Store

-6 KB
Binary file not shown.

app/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ app.use(bodyParser.urlencoded({ extended: false }));
1818
app.set('view engine', 'jade');
1919
app.set('views', __dirname + '/templates');
2020

21-
app.use('/', express.static(__dirname + '/frontend'));
21+
// confusing... Two folders stored under same routes???
22+
// simpler...
23+
// app.use('/', express.static(__dirname + '/frontend'));
2224
app.use('/', express.static(__dirname + '/static'));
2325
app.use('/mock', express.static(__dirname + '/mock'));
2426

0 commit comments

Comments
 (0)