From a9bd8c41f81b9b696c38e834f7fabd76f9cb0e5e Mon Sep 17 00:00:00 2001
From: imnyang
Date: Fri, 31 Jan 2025 00:17:21 +0900
Subject: [PATCH] =?UTF-8?q?=EC=83=9D=EA=B0=81=EC=97=86=EC=9D=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/root.tsx | 2 +-
app/routes/home.tsx | 4 ++--
vite.config.ts | 3 +++
3 files changed, 6 insertions(+), 3 deletions(-)
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() {
-
+
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()],
});