Skip to content

Commit a1eabed

Browse files
authored
Merge pull request #11 from pythonkr/fix/apps-pyconkr-build-failure-fix
fix: @frontend/shop의 target build 버전을 올림
2 parents 9d05030 + 7bebd9c commit a1eabed

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

apps/pyconkr/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<meta name="robots" content="index, follow" />
4040

4141
<script src="https://cdn.iamport.kr/v1/iamport.js"></script>
42-
<link rel="stylesheet" href="github-markdown.css">
42+
<link rel="stylesheet" href="github-markdown.css">
4343

4444
<title>PyCon Korea 2025</title>
4545
</head>

packages/common/src/components/dynamic_route.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ import { CircularProgress } from '@mui/material';
66
import { ErrorBoundary, Suspense } from '@suspensive/react';
77

88
import styled from '@emotion/styled';
9-
import Components from '../components';
109
import Hooks from "../hooks";
1110
import Schemas from "../schemas";
1211
import Utils from '../utils';
12+
import { ErrorFallback } from './error_handler';
13+
import { MDXRenderer } from './mdx';
1314

1415
const InitialPageStyle: React.CSSProperties = {
1516
width: '100%',
@@ -31,7 +32,7 @@ export const PageRenderer: React.FC<{ id: string }> = ({ id }) => {
3132
{
3233
data.sections.map(
3334
(s) => <div style={{ ...InitialSectionStyle, ...Utils.parseCss(s.css) }} key={s.id}>
34-
<Components.MDXRenderer text={s.body} />
35+
<MDXRenderer text={s.body} />
3536
</div>
3637
)
3738
}
@@ -71,7 +72,7 @@ const FullPage = styled.div`
7172
`
7273

7374
export const DynamicRoutePage: React.FC = () => <FullPage>
74-
<ErrorBoundary fallback={Components.ErrorFallback}>
75+
<ErrorBoundary fallback={ErrorFallback}>
7576
<Suspense fallback={<CircularProgress />}>
7677
<AsyncDynamicRoutePage />
7778
</Suspense>

packages/shop/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2019",
3+
"target": "ES2021",
44
"module": "ESNext",
55
"moduleResolution": "node",
66
"declaration": true,

0 commit comments

Comments
 (0)