-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
82 lines (77 loc) · 1.87 KB
/
next.config.js
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
71
72
73
74
75
76
77
78
79
80
81
82
/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
* for Docker builds.
*/
// Importing the env.js file
await import("./src/env.js");
/** @type {import("next").NextConfig} */
const config = {
transpilePackages: ["three"],
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**", // Allows all hostnames
port: "",
pathname: "/**",
},
],
},
async rewrites() {
return [
{
source: "/cyberwarp",
destination: "/allEvents/671cda7637ad0e86d7370c83",
},
{
source: "/empresario",
destination: "/allEvents/671cda9137ad0e86d7370c84",
},
{
source: "/robotron",
destination: "/allEvents/671a3687a32ca06a3a1b07ca",
},
{
source: "/myndsnare",
destination: "/allEvents/671cdadb37ad0e86d7370c86",
},
{
source: "/asme",
destination: "/allEvents/671cdaf137ad0e86d7370c87",
},
{
source: "/ecs",
destination: "/allEvents/672606f555a414cbd04a4d74",
},
{
source: "/iei",
destination: "/allEvents/6726086f55a414cbd04a4d77",
},
{
source: "/vwarz",
destination: "/allEvents/671cdab637ad0e86d7370c85",
},
{
source: "/bytewatt",
destination: "/allEvents/6726611055a414cbd04a4d85",
},
{
source: "/smartcity",
destination: "/allEvents/671cd8e137ad0e86d7370c82",
},
{
source: "/circuitry-nexus",
destination: "/allEvents/672610f955a414cbd04a4d82",
},
{
source: "/amazers",
destination: "/allEvents/6729f5b68992b16a7b9d887c",
},
{
source: "/foto-galleria",
destination: "/allEvents/6729da0c55a414cbd04a4e3e",
},
];
},
};
export default config;