draw-it-mcp
Version:
🎨 A beautiful drawing app with Cursor & Claude Code MCP integration. Draw, save, and let AI analyze your artwork!
27 lines (24 loc) • 490 B
JavaScript
/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
ignoreBuildErrors: false,
},
swcMinify: true,
reactStrictMode: true,
poweredByHeader: false,
images: {
domains: ['localhost'],
},
webpack: (config, { isServer }) => {
if (!isServer) {
config.resolve.fallback = {
...config.resolve.fallback,
fs: false,
net: false,
tls: false
};
}
return config;
}
};
export default nextConfig;