baima_home_main/next.config.js

22 lines
382 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
basePath: '',
trailingSlash: true, // 添加这一行
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
{
protocol: 'http',
hostname: 'localhost',
},
],
},
}
module.exports = nextConfig