mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-12 23:33:43 +08:00
124 lines
2.4 KiB
TypeScript
124 lines
2.4 KiB
TypeScript
import type { NextConfig } from "next";
|
|
import { getLanAllowedDevOrigins } from "./lib/config/lan-access";
|
|
|
|
const lanAllowedDevOrigins = getLanAllowedDevOrigins();
|
|
|
|
const nextConfig: NextConfig = {
|
|
...(lanAllowedDevOrigins.length > 0 ? { allowedDevOrigins: lanAllowedDevOrigins } : {}),
|
|
|
|
// Performance optimizations
|
|
reactStrictMode: true,
|
|
poweredByHeader: false,
|
|
|
|
// Compiler optimizations
|
|
compiler: {
|
|
removeConsole: process.env.NODE_ENV === 'production',
|
|
},
|
|
|
|
output: 'standalone',
|
|
outputFileTracingRoot: __dirname,
|
|
turbopack: {
|
|
root: __dirname,
|
|
},
|
|
|
|
images: {
|
|
remotePatterns: [
|
|
// Douban images
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'img3.doubanio.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'img1.doubanio.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'img2.doubanio.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'img9.doubanio.com',
|
|
},
|
|
// Video source images - allow all subdomains with wildcards
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.com',
|
|
},
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**.cn',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.cn',
|
|
},
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**.net',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.net',
|
|
},
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**.org',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.org',
|
|
},
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**.tv',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.tv',
|
|
},
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**.io',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.io',
|
|
},
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**.xyz',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.xyz',
|
|
},
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**.online',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.online',
|
|
},
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**.top',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**.top',
|
|
},
|
|
],
|
|
// Add image optimization for better performance
|
|
formats: ['image/webp'],
|
|
minimumCacheTTL: 60,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|