's'
This commit is contained in:
40
next.config.js
Normal file
40
next.config.js
Normal file
@@ -0,0 +1,40 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
// Docker 部署支持
|
||||
output: 'standalone',
|
||||
|
||||
images: {
|
||||
domains: [
|
||||
'dash.cloudflare.com',
|
||||
'www.google.com',
|
||||
'ph-static.imgix.net',
|
||||
'app.leonardo.ai'
|
||||
],
|
||||
remotePatterns: [
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: '**',
|
||||
},
|
||||
],
|
||||
},
|
||||
async rewrites() {
|
||||
return [
|
||||
{
|
||||
source: '/api/auth/:path*',
|
||||
destination: '/api/auth/:path*'
|
||||
},
|
||||
{
|
||||
source: '/auth/:path*',
|
||||
destination: '/auth/:path*'
|
||||
}
|
||||
]
|
||||
},
|
||||
// Cloudflare Pages configuration
|
||||
experimental: {
|
||||
serverActions: {
|
||||
allowedOrigins: ['localhost', 'navsphere.com']
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = nextConfig
|
||||
Reference in New Issue
Block a user