-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from GDSC-DGU/dev
🚀Deploy : 1차 배포
- Loading branch information
Showing
129 changed files
with
6,692 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,24 @@ | |
|
||
[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2FGDSC-DGU%2Fgdsc-dgu&count_bg=%23FFA300&title_bg=%23FFCA32&icon=&icon_color=%23E7E7E7&title=GDSC+DGU&edge_flat=true)](https://hits.seeyoufarm.com) | ||
|
||
|
||
|
||
# 👋 introduce team member | ||
|
||
## Front-End | ||
|
||
| name | Email | | ||
| --------------------------------------- | -------------------- | | ||
| [서희찬](https://github.com/seochan99) | [email protected] | | ||
| 본인 이름은 본인이 업데이트해주세용 | 본인 이름은 본인이 업데이트해주세용 | | ||
| name | Email | ✨Date | | ||
| ---------------------------------------- | --------------------- | ---------- | | ||
| [서희찬](https://github.com/seochan99) | [email protected] | 2024.03.11 | | ||
| [정은지](https://github.com/bianbbc87) | [email protected] | 2024.03.13 | | ||
| [심서현](https://github.com/shimseohyun) | [email protected] | 2024.03.13 | | ||
| [이도형](https://github.com/puretension) | [email protected] | 2024.03.13 | | ||
| [황현정](https://github.com/bunju20) | [email protected] | 2024.03.13 | | ||
| [이나경](https://github.com/naarang) | [email protected] | 2024.03.14 | | ||
|
||
## 🎯 Branch Convention | ||
|
||
`feture/컴포넌트 or 페이지 or 기능` | ||
`fix/컴포넌트 or 페이지 or 기능` | ||
`design/컴포넌트 or 페이지 or 기능` | ||
|
||
## 🎯 Commit Convention | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,29 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = {}; | ||
const nextConfig = { | ||
reactStrictMode: true, | ||
webpack(config) { | ||
const fileLoaderRule = config.module.rules.find((rule) => | ||
rule.test?.test?.('.svg'), | ||
); | ||
|
||
config.module.rules.push( | ||
{ | ||
...fileLoaderRule, | ||
test: /\.svg$/i, | ||
resourceQuery: /url/, // *.svg?url | ||
}, | ||
{ | ||
test: /\.svg$/i, | ||
issuer: fileLoaderRule.issuer, | ||
resourceQuery: { not: [...fileLoaderRule.resourceQuery.not, /url/] }, // exclude if *.svg?url | ||
use: ['@svgr/webpack'], | ||
}, | ||
); | ||
// https://github.com/langchain-ai/langchainjs/issues/943#issuecomment-1544928533 | ||
config.externals = [...config.externals, 'hnswlib-node']; | ||
fileLoaderRule.exclude = /\.svg$/i; | ||
return config; | ||
}, | ||
}; | ||
|
||
export default nextConfig; |
Oops, something went wrong.