Perplexica/ui/next.config.mjs
WanQuanXie 2f90e3f1a2 build(app): optimize app docker image size
export app static pages and deploy with Nginx image, instead of host `next start` service
2024-05-08 18:07:39 +08:00

13 lines
222 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
images: {
remotePatterns: [
{
hostname: 's2.googleusercontent.com',
},
],
},
};
export default nextConfig;