유현수

second main.js

Showing 1 changed file with 3 additions and 3 deletions
1 var express = require('express') 1 var express = require('express')
2 var app = express(); 2 var app = express();
3 -var path = require('path') 3 +
4 +app.use(express.static('public'));
5 +//css 파일, jpg 파일 연동 x.
4 6
5 var server = app.listen(8080,function(){ 7 var server = app.listen(8080,function(){
6 console.log("hello"); 8 console.log("hello");
...@@ -14,5 +16,3 @@ app.get('/map',function(req,res){ ...@@ -14,5 +16,3 @@ app.get('/map',function(req,res){
14 return res.sendFile(__dirname +'/html/map.html') 16 return res.sendFile(__dirname +'/html/map.html')
15 }); 17 });
16 18
17 -app.use(express.static(path.join(__dirname + 'public')));
18 -//css 파일, jpg 파일 연동 x.
...\ No newline at end of file ...\ No newline at end of file
......