Skip to content

Commit bc5bc1f

Browse files
committed
rename src to client
1 parent 2d640e5 commit bc5bc1f

File tree

9 files changed

+4
-4
lines changed

9 files changed

+4
-4
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
</head>
99
<body>
1010
<div id="root"></div>
11-
<script type="module" src="/src/main.tsx"></script>
11+
<script type="module" src="/client/main.tsx"></script>
1212
</body>
1313
</html>

tsconfig.app.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
"baseUrl": ".",
2727
"paths": {
28-
"@/*": ["./src/*"]
28+
"@/*": ["client/*"]
2929
}
3030
},
31-
"include": ["src"]
31+
"include": ["client"]
3232
}

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default defineConfig({
88
plugins: [react(), tailwindcss()],
99
resolve: {
1010
alias: {
11-
"@": path.resolve(__dirname, "./src"),
11+
"@": path.resolve(__dirname, "./client"),
1212
},
1313
},
1414
})

0 commit comments

Comments
 (0)