マージでハマったので備忘録
解決策
devServer: {
static:path.resolve(__dirname, 'public_html/***/wp-content/themes/***/assets/dest'),
hot: 'only',
compress: true,
port: 3000,
https: true,
proxy: {
'*': {
target: 'https://localhost:****', // nginxで稼働してるwordpressのアドレス
secure: false,
changeOrigin: true,
},
},
devMiddleware: {
writeToDisk: true,
}
}
devMiddlewareでwriteToDisk:trueで解決できた。
海の彼方にいる名も知らぬ友よ。
幾千の感謝を。
Docker / nginxでWordpressを立ち上げて開発しつつ、webpackでbrowserSyncしていたのだけど、browserSyncのバージョンがあがってしまい、browserSync-webpack-pluginが死んだ。
正直pluginだけの問題だからバージョン下げるってのも考えはしたけど、そういうのが嫌でgulpを投げ捨ててwebpackにしたので、なんとか解決した。
ニッチな製作していると突然死んでしまう。