Added about page

This commit is contained in:
dohsimpson
2024-12-31 15:05:29 -05:00
parent 7195f0d1f2
commit e19798aa22
11 changed files with 2287 additions and 91 deletions

View File

@@ -3,6 +3,13 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: 'standalone',
webpack: (config) => {
config.module.rules.push({
test: /\.md$/,
use: 'raw-loader'
})
return config
}
};
export default nextConfig;