add sub git and git-tools

This commit is contained in:
2022-11-06 21:07:22 +01:00
commit 9a0c882fe4
18 changed files with 3803 additions and 0 deletions

11
next.config.js Executable file
View File

@@ -0,0 +1,11 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true, // Recommended for the `pages` directory, default in `app`.
swcMinify: true,
experimental: {
// Required:
appDir: true,
},
};
module.exports = nextConfig;