강의

멘토링

커뮤니티

Inflearn Community Q&A

neostgeart2035's profile image
neostgeart2035

asked

Learning React while making web games

2-9. Webpack Dev Server and Hot Reloading

webpack.config.js에서 devServer 프로퍼티 질문이 있습니다.

Written on

·

5K

1

output: {
path: path.join(__dirname, "dist"),
filename: "app.js",
publicPath: "/dist/",
},

devServer: {
publicPath: "/dist/",
hot: true,
},

이렇게 하고 패키지도 전부 정상적으로 설치했는데 자꾸 다음과 같은 에러가 뜹니다 혹시 무엇이 문제일가요?ㅠㅠ

[webpack-cli] Invalid options object. Dev Server has been initialized using an options object that does not match the API schema.

 - options has an unknown property 'publicPath'. These properties are valid:

   object { allowedHosts?, bonjour?, client?, compress?, devMiddleware?, headers?, historyApiFallback?, host?, hot?, http2?, https?, ipc?, liveReload?, onAfterSetupMiddleware?, onBeforeSetupMiddleware?, onListening?, open?, port?, proxy?, setupExitSignals?, static?, watchFiles?, webSocketServer? }

react

Answer 2

1

publicPath 지우시면 됩니다. publicPath 속성은 이제 사용되지 않는것으로 보입니다.

0

neostgeart님의 프로필 이미지
neostgeart
Questioner

와 감사합니다ㅠ

neostgeart2035's profile image
neostgeart2035

asked

Ask a question