-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnext.config.ts
More file actions
70 lines (68 loc) · 1.55 KB
/
Copy pathnext.config.ts
File metadata and controls
70 lines (68 loc) · 1.55 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
reactCompiler: true,
allowedDevOrigins: ["192.168.219.50", "*.loca.lt"],
turbopack: {
rules: {
"./src/assets/icons/icon_success.svg": {
loaders: [
{
loader: "@svgr/webpack",
options: { dimensions: false },
},
],
as: "*.js",
},
"./src/assets/icons/**/*.svg": {
loaders: [
{
loader: "@svgr/webpack",
options: {
dimensions: false,
svgoConfig: {
plugins: [{ name: "convertColors", params: { currentColor: true } }],
},
},
},
],
as: "*.js",
},
"./src/assets/images/report/**/*.svg": {
as: "*.asset",
},
"./src/assets/images/record/heart-*.svg": {
as: "*.asset",
},
"./src/assets/images/record/record_character.svg": {
as: "*.asset",
},
"*.svg": {
loaders: [
{
loader: "@svgr/webpack",
options: { dimensions: false },
},
],
as: "*.js",
},
},
},
images: {
qualities: [75, 95],
remotePatterns: [
{
protocol: "https",
hostname: "cdn.groute.app",
},
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
},
{
protocol: "https",
hostname: "glit-images.s3.ap-northeast-2.amazonaws.com",
},
],
},
};
export default nextConfig;