forked from Database-QL-team/Qup-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
38 lines (32 loc) · 970 Bytes
/
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
const webpack = require("webpack");
module.exports = {
reactStrictMode: true,
// webpackDevMiddleware는 더 이상 사용되지 않으므로 제거합니다.
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://localhost:8080/:path*", // 기존 프록시 대상
},
{
source: "/pstogether/:path*",
destination: "http://localhost:8080/pstogether/:path*", // 새로운 프록시 대상
},
];
},
webpack: (config, { dev, isServer }) => {
// 개발 환경 및 클라이언트 측에서만 Hot Module Replacement 적용
if (dev && !isServer) {
config.plugins.push(new webpack.HotModuleReplacementPlugin());
}
// 환경 변수 설정
config.plugins.push(
new webpack.DefinePlugin({
"process.env.NEXT_DISABLE_SSR": JSON.stringify(
process.env.NEXT_DISABLE_SSR
),
})
);
return config;
},
};