forked from nakjun12/Market
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
55 lines (52 loc) · 1.21 KB
/
vite.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import react from "@vitejs/plugin-react-swc";
import { dirname, resolve } from "path"; // 현재 파일의 디렉토리 경로를 구합니다.
import { fileURLToPath } from "url";
import { defineConfig, transformWithEsbuild } from "vite";
const currentDir = dirname(fileURLToPath(import.meta.url));
export default defineConfig({
base: "/web",
plugins: [
//jsx -> js 변환 세팅
{
name: "treat-js-files-as-jsx",
async transform(code, id) {
if (!RegExp(/src\/.*\.js$/).exec(id)) return null;
return transformWithEsbuild(code, id, {
loader: "jsx",
jsx: "automatic"
});
}
},
react({
jsxImportSource: "@emotion/react",
babel: {
plugins: ["@emotion/babel-plugin"]
}
})
],
optimizeDeps: {
//jsx -> js 변환 세팅
force: true,
esbuildOptions: {
loader: {
".js": "jsx"
}
}
},
resolve: {
//절대 경로 세팅
alias: {
"@": resolve(currentDir, "src") // '@'를 src 폴더의 절대 경로로 설정
}
},
preview: {
port: 8080,
strictPort: true
},
server: {
port: 8080,
strictPort: true,
host: true,
origin: "http://0.0.0.0:8080"
}
});