2020-10-30 07:54:19 +03:00
|
|
|
const path = require('path')
|
|
|
|
var HtmlWebpackPlugin = require('html-webpack-plugin')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
entry: './src/index.js',
|
|
|
|
output: {
|
|
|
|
filename: 'bundle.js',
|
|
|
|
path: path.resolve(__dirname, 'dist')
|
|
|
|
},
|
|
|
|
devServer: {
|
|
|
|
port: 3000
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: './src/index.html'
|
|
|
|
})
|
2020-10-30 08:57:04 +03:00
|
|
|
],
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.css$/i,
|
|
|
|
use: [
|
|
|
|
'style-loader',
|
|
|
|
'css-loader'
|
|
|
|
// 'handlebars-loader', // handlebars loader expects raw resource string
|
|
|
|
// 'extract-loader'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2020-10-30 07:54:19 +03:00
|
|
|
}
|