14 lines
386 B
JavaScript
14 lines
386 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
images: { unoptimized: true },
|
|
typescript: { ignoreBuildErrors: true },
|
|
env: {
|
|
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'https://api.yuzhiran.com',
|
|
NEXT_PUBLIC_SITE_URL: 'https://yuzhiran.com',
|
|
NEXT_PUBLIC_SITE_NAME: '宇之然 AI',
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|