Skip to content

Commit

Permalink
Merge pull request #34 from nditc/Club
Browse files Browse the repository at this point in the history
Initial Ultimate Club System Merge
  • Loading branch information
The-XENO-Studios authored Sep 17, 2024
2 parents d66811f + 0e8ac80 commit 70b9aca
Show file tree
Hide file tree
Showing 188 changed files with 24,519 additions and 2,644 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,6 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts

*.bat
*.bat
src/.env
.env
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"plugins": ["prettier-plugin-tailwindcss"]
}
15 changes: 12 additions & 3 deletions next.config.js → next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
/** @type {import('next').NextConfig} */

import pwa from "next-pwa";

const withPWA = pwa({
dest: "public",
register: true,
disable: process.env.NODE_ENV === "development",
skipWaiting: true,
});

const nextConfig = {
transpilePackages: ["crypto-js"],
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
port: "",
pathname: "/**",
},
],
},

async headers() {
return [
{
Expand All @@ -34,4 +43,4 @@ const nextConfig = {
},
};

module.exports = nextConfig;
export default withPWA(nextConfig);
Loading

0 comments on commit 70b9aca

Please sign in to comment.