Skip to content

Commit

Permalink
Merge pull request #47 from GDSC-DGU/dev
Browse files Browse the repository at this point in the history
🚀Deploy : 1차 배포
  • Loading branch information
seochan99 authored May 2, 2024
2 parents 40845da + 1dabc04 commit 38407b2
Show file tree
Hide file tree
Showing 129 changed files with 6,692 additions and 82 deletions.
20 changes: 14 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
27 changes: 26 additions & 1 deletion next.config.mjs
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;
Loading

0 comments on commit 38407b2

Please sign in to comment.