송효섭

Backend : 라우터 최소화(index.js 통합)

Showing 1 changed file with 3 additions and 3 deletions
......@@ -3,8 +3,8 @@ const path = require('path');
const app = express();
//화면 별 router 연결, 라우터 호출해서 페이지를 불러오는데 사용함.
var mainRouter = require('./routes') //호출시 main.js 실행 (main.js : title 할당하고 main.html 열어줌)
var loginRouter = require('./routes/login')
var mainRouter = require('./routes') //호출시 index.js 실행 (main.js : title 할당하고 main.html 열어줌)
//디폴트 포트 값 : 8000
app.set('port', process.env.PORT || 8000);
......@@ -15,7 +15,7 @@ app.engine('html', require('ejs').renderFile);
//각각의 요청에서 router 호출해서 page를 전환함.
app.use('/', mainRouter);
app.use('/login', loginRouter);
app.use('/login', mainRouter);
//css, image 등 정적 파일을 public에서 불러옴 -> html과 연결함
......