mirror of
https://github.com/vercel/workflow.git
synced 2026-09-14 19:59:43 +08:00
9 lines
135 B
JavaScript
9 lines
135 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
};
|
|
|
|
export default config;
|