Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
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
Hide whitespace changes
Inline
Side-by-side
client/src/components/StudyPlan/studyplan.module.scss
View file @
666389a7
...
@@ -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
server/app.js
View file @
666389a7
...
@@ -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
;
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