Created
June 17, 2018 21:53
-
-
Save alexrqs/5f6d0e55001c471b7eedae28df872e4c to your computer and use it in GitHub Desktop.
webpack boilerplate for js with babel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yarn add -D webpack webpack-cli webpack-dev-server babel-loader@next @babel/core @babel/preset-env @babel/preset-stage-0 html-webpack-plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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