-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into feat/development/16-Nav
- Loading branch information
Showing
108 changed files
with
12,356 additions
and
678 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 |
---|---|---|
|
@@ -34,3 +34,5 @@ yarn-error.log* | |
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
.env |
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,3 +1,23 @@ | ||
#!/usr/bin/env sh | ||
# #!/usr/bin/env sh | ||
|
||
npx --no-install commitlint --edit "$1" | ||
# PKG_MGRS="pnpm yarn npm" | ||
# NODE_GLOBALS="node bun $PKG_MGRS npx" | ||
|
||
# NVM_DIR="$HOME/.nvm" | ||
|
||
# if [ -d "$NVM_DIR" ]; then | ||
# _load_nvm() { | ||
# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | ||
|
||
# node --version >/dev/null | ||
# npx --version >/dev/null | ||
# } | ||
|
||
# for cmd in $NODE_GLOBALS; do | ||
# eval "$cmd(){ unset -f $NODE_GLOBALS; _load_nvm; unset -f _load_nvm; $cmd \$@; }" | ||
# done | ||
|
||
# unset -f "$NODE_GLOBALS" | ||
# fi | ||
|
||
# npx --no-install commitlint --edit "$1" |
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,3 +1,31 @@ | ||
#!/usr/bin/env sh | ||
# #!/usr/bin/env sh | ||
|
||
yarn build | ||
# PKG_MGRS="pnpm yarn npm" | ||
# NODE_GLOBALS="node bun $PKG_MGRS npx" | ||
|
||
# NVM_DIR="$HOME/.nvm" | ||
|
||
# if [ -d "$NVM_DIR" ]; then | ||
# _load_nvm() { | ||
# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | ||
|
||
# node --version >/dev/null | ||
# npx --version >/dev/null | ||
# } | ||
|
||
# for cmd in $NODE_GLOBALS; do | ||
# eval "$cmd(){ unset -f $NODE_GLOBALS; _load_nvm; unset -f _load_nvm; $cmd \$@; }" | ||
# done | ||
|
||
# unset -f "$NODE_GLOBALS" | ||
# fi | ||
|
||
# RUNNERS="prettier build" | ||
# for pm in $PKG_MGRS; do | ||
# if command -v "$pm" >/dev/null; then | ||
# for X in $RUNNERS; do | ||
# eval "$pm run $X" | ||
# done | ||
# break | ||
# fi | ||
# done |
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 |
---|---|---|
|
@@ -14,4 +14,4 @@ | |
"components": "@/components", | ||
"utils": "@/lib/utils" | ||
} | ||
} | ||
} |
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,14 +1,14 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
// async redirects() { | ||
// return [ | ||
// { | ||
// source: "/", | ||
// destination: "/underdev", | ||
// permanent: false, | ||
// }, | ||
// ]; | ||
// }, | ||
async redirects() { | ||
return [ | ||
{ | ||
source: "/underdev", | ||
destination: "/", | ||
permanent: false, | ||
}, | ||
]; | ||
}, | ||
}; | ||
|
||
export default nextConfig; |
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
Oops, something went wrong.