We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rendering chunks (41)...warnings when minifying css: ▲ [WARNING] "overflow-X" is not a known CSS property [unsupported-css-property] <stdin>:786:2: 786 │ overflow-X: hidden; │ ~~~~~~~~~~ ╵ overflow-x
<stdin>:786:2: 786 │ overflow-X: hidden; │ ~~~~~~~~~~ ╵ overflow-x
Did you mean "overflow-x" instead?
node_modules/@toast-ui/editor/dist/toastui-editor-viewer.css node_modules/@toast-ui/editor/dist/toastui-editor.css 정상 빌드됨
node_modules/@toast-ui/editor/dist/toastui-editor-viewer.css
node_modules/@toast-ui/editor/dist/toastui-editor.css
overflow-X 를 overflow-x 로 수정
apps/editor/src/css/contents.css
[vite:css] @charset must precede all other statements 59 | @charset "utf-8"; | ^ 60 | /* height */ 61 | .auto-height,
@charset 은 맨처음 선언되어야 하나 중간에 선언되어 있음 이 부분은 svelte 모듈만 그런 것인지도 모르겠음.
node_modules/@toast-ui/editor/dist/toastui-editor.css 59 라인 @charset "utf-8"; 삭제
@charset "utf-8";
에러없이 빌드 됨
찾지 못함.
The text was updated successfully, but these errors were encountered:
It seems to releated with #2878 #2880
Sorry, something went wrong.
@jwlee1108 Can this be merged?
We have to check #2880, but it'll be merged. @jajugoguma take over this issue.
jajugoguma
No branches or pull requests
CSS 소스 오타 (bug)
1. svelte build 시 overflow-x 오류
오류메세지
rendering chunks (41)...warnings when minifying css: ▲ [WARNING] "overflow-X" is not a known CSS property [unsupported-css-property]
Did you mean "overflow-x" instead?
소스 수정
node_modules/@toast-ui/editor/dist/toastui-editor-viewer.css
node_modules/@toast-ui/editor/dist/toastui-editor.css
정상 빌드됨
수정
overflow-X 를 overflow-x 로 수정
git 소스 위치
apps/editor/src/css/contents.css
2. charset must precede all other statements
오류메세지
[vite:css] @charset must precede all other statements 59 | @charset "utf-8"; | ^ 60 | /* height */ 61 | .auto-height,
@charset 은 맨처음 선언되어야 하나 중간에 선언되어 있음
이 부분은 svelte 모듈만 그런 것인지도 모르겠음.
소스 수정
node_modules/@toast-ui/editor/dist/toastui-editor.css
59 라인
@charset "utf-8";
삭제에러없이 빌드 됨
git 소스위치
찾지 못함.
The text was updated successfully, but these errors were encountered: