Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
students
Today KU
Commits
666389a7
Commit
666389a7
authored
Nov 12, 2021
by
Daeki Yoon
Browse files
studyplan.scss and app.js last
parent
443851bc
Changes
2
Show whitespace changes
Inline
Side-by-side
client/src/components/StudyPlan/studyplan.module.scss
View file @
666389a7
...
...
@@ -4,7 +4,7 @@
}
.inCard
{
overflow
:
scroll
;
overflow
-y
:
auto
;
}
.checkBox
{
...
...
server/app.js
View file @
666389a7
...
...
@@ -23,5 +23,9 @@ app.use(express.json());
app
.
use
(
express
.
urlencoded
({
extended
:
true
}));
app
.
use
(
cookieParser
());
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
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment