返回 presentation-ai
next.config.js
根目录 / next.config.js
1 /**
2 * Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
3 * for Docker builds.
4 */
5 await import("./src/env.js");
6
7 /** @type {import("next").NextConfig} */
8 const config = {
9 images: {
10 remotePatterns: [
11 {
12 protocol: "https",
13 hostname: "lh3.googleusercontent.com",
14 },
15 {
16 protocol: "https",
17 hostname: "images.unsplash.com",
18 },
19 {
20 protocol: "https",
21 hostname: "*.ufs.sh",
22 },
23 ],
24 },
25 };
26
27 export default config;
28
28 lines JAVASCRIPT