Skip to content

Commit

Permalink
Initialize set-up
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark committed Dec 10, 2024
1 parent bdb0623 commit c2cf034
Show file tree
Hide file tree
Showing 18 changed files with 468 additions and 20 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
**/node_modules/*
**/.next/*
5 changes: 4 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"extends": "next/core-web-vitals"
"extends": ["next/core-web-vitals", "prettier"],
"rules": {
"react/display-name": "off"
}
}
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: "npm"
directories:
- "/frontend"
- "/backend"
schedule:
interval: "weekly"
Empty file added CODE_OF_CONDUCT.md
Empty file.
Empty file added CONTRIBUTING.md
Empty file.
Empty file added SECURITY.md
Empty file.
4 changes: 1 addition & 3 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./*"]
}
"baseUrl": "./"
}
}
5 changes: 4 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
trailingSlash: true,
reactStrictMode: false,
};

export default nextConfig;
Loading

0 comments on commit c2cf034

Please sign in to comment.