-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
45 lines (43 loc) · 1.05 KB
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { defineConfig, passthroughImageService } from "astro/config";
import tailwind from "@astrojs/tailwind";
import vercel from "@astrojs/vercel/serverless";
import react from "@astrojs/react";
import auth from "auth-astro";
// https://astro.build/config
export default defineConfig({
site: "https://movie-astro.vercel.app",
image: {
remotePatterns: [
{
protocol: "https",
hostname: "image.tmdb.org",
pathname: "/**",
port: "",
},
{
protocol: "https",
hostname: "lh3.googleusercontent.com",
pathname: "/**",
port: "",
},
{
protocol: "https",
hostname: "qvsxkboawsixkeqgaeja.supabase.co",
pathname: "/**",
port: "",
},
],
domains: [
"image.tmdb.org",
"lh3.googleusercontent.com",
"qvsxkboawsixkeqgaeja.supabase.co",
],
service: passthroughImageService(),
},
experimental: {
actions: true,
},
integrations: [tailwind(), react(), auth()],
output: "server",
adapter: vercel(),
});