add new content

This commit is contained in:
2025-08-13 18:37:34 +02:00
commit 127bf9c83b
350 changed files with 63539 additions and 0 deletions

23
next.config.js Normal file
View File

@@ -0,0 +1,23 @@
/** @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;