mirror of
https://github.com/soconnor0919/october.today.git
synced 2026-02-05 08:16:38 -05:00
10 lines
155 B
JavaScript
10 lines
155 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
export default config;
|