use next.js 13 appdir, add initial navbar drawer

This commit is contained in:
Nathaniel Tampus
2023-02-15 14:09:33 +08:00
parent 4324ee6c33
commit 2ef5e33b0e
10 changed files with 81 additions and 37 deletions

View File

@@ -1,6 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true
reactStrictMode: true,
experimental: {
appDir: true
}
};
module.exports = nextConfig;