mirror of
https://github.com/soconnor0919/october.today.git
synced 2026-02-05 00:06:40 -05:00
refactor: Migrate Next.js configuration from TypeScript to ES module format and add package-lock.json.
This commit is contained in:
9
next.config.mjs
Normal file
9
next.config.mjs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/** @type {import('next').NextConfig} */
|
||||||
|
const config = {
|
||||||
|
output: "export",
|
||||||
|
images: {
|
||||||
|
unoptimized: true,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default config;
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
/**
|
|
||||||
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
|
|
||||||
* for Docker builds.
|
|
||||||
*/
|
|
||||||
// import "./src/env.ts";
|
|
||||||
|
|
||||||
import { type NextConfig } from "next";
|
|
||||||
|
|
||||||
const config: NextConfig = {
|
|
||||||
output: "export",
|
|
||||||
images: {
|
|
||||||
unoptimized: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default config;
|
|
||||||
Reference in New Issue
Block a user