diff --git a/app/root.tsx b/app/root.tsx index 2f634c5..9206b99 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -21,7 +21,7 @@ export const links: Route.LinksFunction = () => [ rel: "stylesheet", href: "https://cdnjs.cloudflare.com/ajax/libs/pretendard/1.3.9/variable/pretendardvariable-dynamic-subset.min.css", async: true, - crossorigin: "anonymous", + crossOrigin: "anonymous", }, { rel: "stylesheet", href: stylesheet }, ]; diff --git a/app/routes/home.tsx b/app/routes/home.tsx index a353b76..a790934 100644 --- a/app/routes/home.tsx +++ b/app/routes/home.tsx @@ -107,7 +107,7 @@ export default function Home() {
+
skillicons.dev
- +Normal Student Developer
diff --git a/vite.config.ts b/vite.config.ts index d5eac36..795890e 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -11,5 +11,8 @@ export default defineConfig({ plugins: [autoprefixer], }, }, + build: { + sourcemap: process.env.NODE_ENV !== 'production', + }, plugins: [tailwindcss(), reactRouter(), tsconfigPaths()], });