유현수

second main.js

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