forked from gramachain/gramachain.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
62 lines (58 loc) · 1.45 KB
/
webpack.config.js
File metadata and controls
62 lines (58 loc) · 1.45 KB
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
const htmlPlugin = require('html-webpack-plugin')
const path = require('path')
const webpack = require('webpack')
const getPath = s => path.join(...[__dirname, ...s])
const PROD = process.env.NODE_ENV === 'production'
let plugins = [
new webpack.ProgressPlugin(),
new htmlPlugin({
title: 'Grama',
filename: 'index.html',
template: getPath(['src', 'template.html']),
inject: 'body',
meta: {
viewport: 'width=device-width, initial-scale=1.0',
},
minify: PROD,
hash: true,
xhtml: true,
})
]
if (PROD) {
// Production plugins.
}
module.exports = {
devServer: {
compress: true,
contentBase: getPath(['docs']),
filename: 'bundle.js',
hot: true,
port: 8080,
},
devtool: PROD ? false : 'source-map',
entry: ['whatwg-fetch', getPath(['src', 'index.js'])],
mode: PROD ? 'production' : 'development',
module: {
rules: [
{
exclude: /node_modules/,
loader: 'babel-loader',
test: /\.jsx?$/,
},
{
loaders: ['style-loader', 'css-loader', 'sass-loader'],
test: /\.s?css$/,
}
],
},
output: {
filename: 'bundle.js',
path: getPath(['docs']),
publicPath: '/',
},
plugins,
resolve: {
extensions: ['.js', '.jsx'],
},
target: 'web',
}