mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
10 lines
163 B
JavaScript
10 lines
163 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|