Skip to content
This repository has been archived by the owner on Dec 28, 2022. It is now read-only.

Commit

Permalink
📁 Move public -> views/public
Browse files Browse the repository at this point in the history
:large_
  • Loading branch information
Gum-Joe committed Mar 3, 2016
1 parent a5310c2 commit d46bd59
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
app.set('view engine', 'ejs');

// uncomment after placing your favicon in /public
app.use(favicon(path.join(__dirname, 'public', 'icon.png')));
// uncomment after placing your favicon in /views/public
app.use(favicon(path.join(__dirname, 'views/public', 'icon.png')));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
app.use(express.static(path.join(__dirname, 'views/public')));
app.use(express.static(path.join(__dirname, 'bower_components')));
app.use(express.static(path.join(__dirname, 'node_modules')));
app.use(express.static(path.join(__dirname, 'views')));
Expand Down
File renamed without changes
File renamed without changes.

0 comments on commit d46bd59

Please sign in to comment.