-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e834461
commit 84cc4c5
Showing
20 changed files
with
5,323 additions
and
8,187 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 |
---|---|---|
|
@@ -36,3 +36,4 @@ yarn-error.log* | |
|
||
# typescript | ||
*.tsbuildinfo | ||
.env |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
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
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
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,25 +1,18 @@ | ||
/** @type {import('next').NextConfig} */ | ||
|
||
|
||
const withTM = require("next-transpile-modules")([ | ||
"@fullcalendar/common", | ||
"@babel/preset-react", | ||
"@fullcalendar/common", | ||
"@fullcalendar/daygrid", | ||
"@fullcalendar/interaction", | ||
"@fullcalendar/react", | ||
"@fullcalendar/timegrid", | ||
]); | ||
|
||
|
||
const nextConfig = withTM({ | ||
const nextConfig = { | ||
reactStrictMode: true, | ||
typescript: { | ||
tsconfigPath: "./tsconfig.json" | ||
tsconfigPath: './tsconfig.json' | ||
}, | ||
images: { | ||
domains: ['tailwindui.com', "images.unsplash.com", "shuffle.dev", "lh3.googleusercontent.com"], | ||
}, | ||
}) | ||
domains: [ | ||
'tailwindui.com', | ||
'images.unsplash.com', | ||
'shuffle.dev', | ||
'lh3.googleusercontent.com' | ||
] | ||
} | ||
}; | ||
|
||
module.exports = nextConfig | ||
module.exports = nextConfig; |
Oops, something went wrong.