WEBPACK 2 TUTORIAL #4 - Working in a local DevServer and configurations.

preview_player
Показать описание
Hi! In this 4th episode we'll see how to install the webpack-dev-server plugin and configure it for opening a new page when we load our local development.
Рекомендации по теме
Комментарии
Автор

Everything works, good tutorial for beginners and for the dev-server i use this:
devServer: {
contentBase: path.join(__dirname, "dist"),
compress: true,
stats: "errors-only",
open: true
},

marinsecret