Commit 666389a7 authored by Daeki Yoon's avatar Daeki Yoon
Browse files

studyplan.scss and app.js last

parent 443851bc
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
} }
.inCard { .inCard {
overflow: scroll; overflow-y: auto;
} }
.checkBox { .checkBox {
...@@ -25,4 +25,4 @@ ...@@ -25,4 +25,4 @@
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
\ No newline at end of file
...@@ -23,5 +23,9 @@ app.use(express.json()); ...@@ -23,5 +23,9 @@ app.use(express.json());
app.use(express.urlencoded({ extended: true })); app.use(express.urlencoded({ extended: true }));
app.use(cookieParser()); app.use(cookieParser());
app.use(path.join(root_url, "/api"), mainRouter); app.use(path.join(root_url, "/api"), mainRouter);
// 클라이언트 라우팅
app.get("/*", function (req, res) {
res.sendFile(path.join(CURRENT_WORKING_DIR, "client", "build", "index.html"));
});
export default app; export default app;
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment