Skip to content

Commit

Permalink
Merge pull request #52 from JNU-econovation/FE
Browse files Browse the repository at this point in the history
feat: 생성 버튼 클릭 시 바로 렌더링 되는 기능
  • Loading branch information
mlnwns authored May 20, 2024
2 parents 4756510 + d2dbd46 commit e106911
Show file tree
Hide file tree
Showing 20 changed files with 799 additions and 284 deletions.
1 change: 1 addition & 0 deletions FE/error/.env
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
VITE_ERROR_API = 'https://error.econo-calendar.com:8080'

24 changes: 12 additions & 12 deletions FE/error/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@ module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
ignorePatterns: ["dist", ".eslintrc.cjs"],
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
settings: { react: { version: "18.2" } },
plugins: ["react-refresh"],
rules: {
'react/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
"react/jsx-no-target-blank": "off",
"react-refresh/only-export-components": [
"warn",
{ allowConstantExport: true },
],
},
}
};
4 changes: 4 additions & 0 deletions FE/error/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/reset.min.css"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
<link
Expand Down
Loading

0 comments on commit e106911

Please sign in to comment.