refactor: Migrate Next.js configuration from TypeScript to ES module format and add package-lock.json.

This commit is contained in:
Sean O'Connor
2026-02-03 19:46:17 -05:00
parent 2fb4ffebf5
commit 449dcc5763
2 changed files with 9 additions and 16 deletions

9
next.config.mjs Normal file
View File

@@ -0,0 +1,9 @@
/** @type {import('next').NextConfig} */
const config = {
output: "export",
images: {
unoptimized: true,
},
};
export default config;