-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.mjs
46 lines (45 loc) · 1.1 KB
/
next.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
46
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: config => {
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
use: ['@svgr/webpack'],
});
return config;
},
async rewrites() {
const baseUrl = 'http://13.124.66.210:8000';
return [
{
source: '/api/cards/:path*',
destination: `${baseUrl}/cards/:path*`,
},
{
source: '/api/cardset/:path*',
destination: `${baseUrl}/cardset/:path*`,
},
{
source: '/api/comments/:path*',
destination: `${baseUrl}/comments/:path*`,
},
{
source: '/api/community/:path*',
destination: `${baseUrl}/community/:path*`,
},
{
source: '/api/folders/:path*',
destination: `${baseUrl}/folders/:path*`,
},
{
source: '/api/member/:path*',
destination: `${baseUrl}/member/:path*`,
},
// {
// source: '/:path*',
// destination: 'https://52.78.66.160:8000/:path*',
// },
];
},
};
export default nextConfig;