We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 510b49e commit 2d5210bCopy full SHA for 2d5210b
server/webpack.config.js
@@ -4,8 +4,12 @@ module.exports = {
4
mode: "development",
5
resolve: {
6
extensions: [".ts", ".js"],
7
+ modules: [
8
+ path.resolve(__dirname, ".."), // 상위 디렉토리도 모듈 검색 경로에 추가
9
+ "node_modules",
10
+ ],
11
alias: {
- "@noctaCrdt": path.resolve(__dirname, "../@noctaCrdt/dist/src"),
12
+ "@noctaCrdt": path.resolve(process.cwd(), "../@noctaCrdt/dist/src"),
13
},
14
15
module: {
0 commit comments