Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张泽世
/
yohobuywap-node
·
Commits
Go to a project
GitLab
Go to dashboard
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
xuqi
2016-04-27 17:02:17 +0800
Commit
f29f66c5cc4ef694e5012de19bb9a26fc2c43a7e
1 parent
5424b62c
simplify router entry
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
app.js
app.js
View file @
f29f66c
...
...
@@ -30,7 +30,7 @@ app.use(cookieParser());
app
.
use
(
express
.
static
(
path
.
join
(
__dirname
,
'public'
)));
// router
app
.
use
(
'/'
,
require
(
'./router'
));
app
.
use
(
require
(
'./router'
));
// listener
app
.
listen
(
3000
,
function
()
{
...
...
Please
register
or
login
to post a comment