Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김유민
/
digging-service
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
blue
2021-12-05 22:51:33 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b92dd7458355c19b710b72c08985a1d2a796ab37
b92dd745
1 parent
0f1aee78
Modify app.js and jsonfile
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
1 deletions
app.js
package-lock.json
app.js
View file @
b92dd74
...
...
@@ -8,7 +8,7 @@ const indexRoute = require("./routes/index");
// 뷰엔진 설정
app
.
set
(
'views'
,
__dirname
+
'/views'
);
app
.
set
(
'view engine'
,
'ejs'
);
app
.
use
(
express
.
static
(
__dirname
+
"/
public
"
));
app
.
use
(
express
.
static
(
__dirname
+
"/
views
"
));
// use routes
app
.
use
(
"/"
,
indexRoute
);
...
...
package-lock.json
View file @
b92dd74
This diff is collapsed. Click to expand it.
Please
register
or
login
to post a comment