Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import withPlugins from 'next-compose-plugins';
import withPWA from 'next-pwa';
import typescript from 'next-plugin-graphql';

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
Expand All @@ -10,4 +14,24 @@ const nextConfig = {
}
};

export default nextConfig;
export default withPlugins(
[
[
withPWA,
{
pwa: {
dest: 'public'
}
}
],
[
typescript,
{
typescriptLoaderOptions: {
transpileOnly: false
}
}
]
],
nextConfig
);
4,297 changes: 3,936 additions & 361 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
"framer-motion": "^11.4.0",
"js-cookie": "^3.0.5",
"next": "14.2.5",
"next-compose-plugins": "^2.2.1",
"next-plugin-graphql": "^0.0.2",
"react": "^18",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18",
Expand All @@ -43,6 +45,7 @@
"@types/react-window": "^1.8.8",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"next-pwa": "^5.6.0",
"typescript": "^5"
},
"description": "- 프레임워크: Next.js\r - 언어: TypeScript\r - 패키지 매니저: npm\r - CSS 프레임워크: styled-components\r - 전역상태관리: Recoil\r - 통신: Axios\r - 그외: Lint & Prettier",
Expand Down
File renamed without changes
File renamed without changes
Binary file added public/icon_512_maskable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icon_512_rounded.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
101 changes: 101 additions & 0 deletions public/sw.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading