Skip to content

Instantly share code, notes, and snippets.

@alexrqs
Created June 17, 2018 21:53
Show Gist options
  • Save alexrqs/5f6d0e55001c471b7eedae28df872e4c to your computer and use it in GitHub Desktop.
Save alexrqs/5f6d0e55001c471b7eedae28df872e4c to your computer and use it in GitHub Desktop.
webpack boilerplate for js with babel
yarn add -D webpack webpack-cli webpack-dev-server babel-loader@next @babel/core @babel/preset-env @babel/preset-stage-0 html-webpack-plugin
const path = require('path')
const HTMLPage = require('html-webpack-plugin');
module.exports = {
devServer: {
// NOTE
// modify hosts file with the next line
host: 'development.local',
allowedHosts: ['0.0.0.0'],
port: 3030,
open: true,
},
entry: path.resolve('src/index.js'),
mode: 'development',
module: {
rules: [
{
test: /\.js$/,
use: 'babel-loader',
}
],
},
output: {
path: path.resolve('dist'),
filename: '[name].js',
publicPath: '',
},
plugins: [
new HTMLPage()
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment