-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnext.config.mjs
More file actions
53 lines (51 loc) · 1.14 KB
/
next.config.mjs
File metadata and controls
53 lines (51 loc) · 1.14 KB
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
46
47
48
49
50
51
52
53
import { createVanillaExtractPlugin } from "@vanilla-extract/next-plugin";
const withVanillaExtract = createVanillaExtractPlugin();
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "www.kyeongin.com",
},
{
protocol: "https",
hostname: "www.chosun.com",
},
{
protocol: "https",
hostname: "minio.nculture.org",
},
{
protocol: "https",
hostname: "i.namu.wiki",
},
{
protocol: "https",
hostname: "museum.seoul.go.kr",
},
{
protocol: "https",
hostname: "www.koreaimg.com",
},
{
protocol: "https",
hostname: "mblogthumb-phinf.pstatic.net",
},
{
protocol: "https",
hostname: "test-resize-image.wishbeen.co.kr",
},
{
protocol: "https",
hostname: "hangang.seoul.go.kr",
},
{
protocol: "https",
hostname: "www.kyeongin.com",
},
],
},
};
export default withVanillaExtract(nextConfig);