install webpack
npm install --save-dev webpack
# or specific version
npm install --save-dev webpack@<version>
install webpack
npm install --save-dev webpack
# or specific version
npm install --save-dev webpack@<version>
webpack install
npm install --save-dev webpack-cli
npm dev server
$ npm install dev-server -g
webpack dev server
devServer: {
open: true,
compress: true,
hot: true,
inline: true,
watchContentBase: true,
contentBase: resolve(process.cwd(), 'build'),
historyApiFallback: true,
before: (app, server, compiler) => {
const fileExist = existsSync('./src/setupProxyx.js')
if (fileExist) {
const pathProxy = resolve(process.cwd(), 'src/setupProxy')
return require(`${pathProxy}`)(app)
}
},
port: process.env.PORT || 3000,
liveReload: false
},
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us