mirror of
https://github.com/walkxcode/dashboard-icons.git
synced 2025-06-27 23:10:22 +08:00
11 lines
157 B
TypeScript
11 lines
157 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
output: "export",
|
|
}
|
|
|
|
export default nextConfig
|