.editorconfig
# EditorConfig is awesome: <https://EditorConfig.org>
# top-most EditorConfig file
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
[*.{html,css,js,jsx}]
indent_style = space
indent_size = 2
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
.vscode/launch.json : 디버깅용
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: [<https://go.microsoft.com/fwlink/?linkid=830387>](<https://go.microsoft.com/fwlink/?linkid=830387>)
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "React Chrome",
"url": "[<http://localhost:5173>](<http://localhost:5173/>)",
"webRoot": "${workspaceFolder}",
"sourceMaps": true,
"trace": true,
"skipFiles": [
"${workspaceFolder}/node_modules/**",
"**/@react-refresh",
"**/@vite/**"
]
}
]
}
vercel.json : vercel용
{
"rewrites": [{ "source": "/(.*)", "destination": "/" }]
}