mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
9 lines
149 B
JavaScript
9 lines
149 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
eslint : {
|
|
ignoreDuringBuilds : true,
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|