don't hate me, old git is fuck up

This commit is contained in:
Ren Amamiya
2023-02-21 14:58:47 +07:00
commit 672298daf9
103 changed files with 12172 additions and 0 deletions

13
next.config.js Normal file
View File

@@ -0,0 +1,13 @@
const removeImports = require('next-remove-imports')();
module.exports = removeImports({
reactStrictMode: false,
swcMinify: true,
images: {
unoptimized: true,
},
webpack: (config) => {
config.experiments = { ...config.experiments, topLevelAwait: true };
return config;
},
});