river-of-ebooks/webpack.config.js

58 lines
1.6 KiB
JavaScript
Raw Normal View History

const HtmlWebpackPlugin = require('html-webpack-plugin')
2018-10-29 19:31:00 +00:00
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
2018-10-29 23:56:18 +00:00
const webpack = require('webpack')
const path = require('path')
2018-10-28 20:42:38 +00:00
2018-10-29 23:56:18 +00:00
module.exports = (env, argv) => {
const mode = argv.mode || 'development'
return {
mode: mode || 'development',
entry: {
2018-11-11 03:46:50 +00:00
login: './assets/js/login.js',
targets: './assets/js/targets.js'
2018-10-29 23:56:18 +00:00
},
output: {
path: path.join(__dirname, '/.tmp/public'),
filename: '[name].bundle.js'
},
module: {
rules: [
{
use: 'babel-loader',
test: /\.jsx?$/,
exclude: /node_modules/
},
{
test: /\.scss$/,
use: [
mode !== 'production' ? 'style-loader' : MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader'
]
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: 'assets/templates/login.html',
links: mode === 'production' ? [{ rel: 'stylesheet', type: 'text/css', href: 'login.css' }] : [],
2018-11-11 03:46:50 +00:00
filename: path.join(__dirname, '/.tmp/public/login.html'),
chunks: ['login']
}),
new HtmlWebpackPlugin({
template: 'assets/templates/targets.html',
links: mode === 'production' ? [{ rel: 'stylesheet', type: 'text/css', href: 'targets.css' }] : [],
filename: path.join(__dirname, '/.tmp/public/targets.html'),
chunks: ['targets']
2018-10-29 23:56:18 +00:00
}),
new MiniCssExtractPlugin({
filename: '[name].css'
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(mode)
})
2018-10-28 20:42:38 +00:00
]
2018-10-29 23:56:18 +00:00
}
2018-10-29 19:31:00 +00:00
}