www_veda_2025/next.config.js
2025-08-13 18:37:34 +02:00

23 lines
497 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
webpack(config, options) {
// Add file-loader for .mp4 files
config.module.rules.push({
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)$/,
use: [
{
loader: 'file-loader',
options: {
esModule: false,
name: '[path][name].[ext]',
},
},
],
});
return config;
},
};
module.exports = nextConfig;