-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebpack.dev.js
72 lines (70 loc) · 1.6 KB
/
webpack.dev.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const path = require('path');
const common = require('./webpack.common.js');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlWebpackTagsPlugin = require('html-webpack-tags-plugin');
const Merge = require('webpack-merge');
module.exports = Merge.multiple(common, {
js: {
mode: 'development',
entry: {
browser: './browser.js',
},
module: {
rules: [
{
test: /\.hbs$/,
use: [
{
loader: 'handlebars-loader',
},
],
},
],
},
devtool: 'inline-source-map',
devServer: {
static: {
directory: path.join(__dirname, 'example'),
publicPath: '/',
},
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('development')
}
}),
new HtmlWebpackPlugin({
title: 'CRSearch - sample setup',
hash: true,
template: '../html/crsearch-testing.hbs',
chunks: [
'crsearch-vendor',
'crsearch',
'browser',
],
}),
// new HtmlWebpackIncludeAssetsPlugin({
// assets: ['css/font-awesome.css'],
// append: false,
// hash: true,
// }),
new HtmlWebpackTagsPlugin({
tags: [
'css/browser.css',
'css/crsearch.css',
],
append: true,
useHash: true,
}),
],
},
css: {
mode: 'development',
entry: {
browser: './browser.scss',
},
devtool: 'eval-cheap-module-source-map',
},
});