forked from 77media/video-flow
10 lines
175 B
JavaScript
10 lines
175 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
images: { unoptimized: true },
|
|
};
|
|
|
|
module.exports = nextConfig;
|