19 lines
363 B
JavaScript
19 lines
363 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
typescript: {
|
|
ignoreBuildErrors: false,
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: false,
|
|
},
|
|
webpack: (config) => {
|
|
config.module.rules.push({
|
|
test: /\.(mp4|webm)$/,
|
|
type: 'asset/resource',
|
|
});
|
|
return config;
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |