feat: add dark theme support

This commit is contained in:
Yidadaa
2023-03-13 03:06:21 +08:00
parent a9940cb05e
commit 14d50f1167
14 changed files with 395 additions and 92 deletions

View File

@@ -1,5 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
const withLess = require("next-with-less");
const nextConfig = withLess({
experimental: {
appDir: true,
},
@@ -11,6 +14,6 @@ const nextConfig = {
return config;
},
};
});
module.exports = nextConfig;