9 lines
145 B
TypeScript
9 lines
145 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
qualities: [75, 100],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|