-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathwebpack.config.js
135 lines (134 loc) · 3.24 KB
/
webpack.config.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const template = require('html-webpack-template');
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name]-[hash].js'
},
devServer: {
// We have a single-page application so do not navigate
historyApiFallback: true,
// Forward requests to API, downloads and websocket to the running backend
proxy: {
'/api': 'http://localhost:9000',
'/downloads': 'http://localhost:9000',
'/ws': {
target: 'ws://localhost:9000/',
ws: true
}
},
// Enable HMR for dev server
hot: true
},
plugins: [
// Don't minimize in dev
new webpack.LoaderOptionsPlugin({
minimize: false,
debug: false
}),
// Provide jquery to bootstrap
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery'
}),
// Tell the websocket library that it runs in browser
new webpack.DefinePlugin({
'process.env': {
BROWSER: JSON.stringify(true)
}
}),
// Extract css
new ExtractTextPlugin({
filename: '[name]-[contenthash].css'
}),
// Generate an index.html to serve our application
new HtmlWebpackPlugin({
// Required settings
inject: false,
template: template,
// Application window title
title: 'Cluster Broccoli',
// Create a mount point for our elm app
appMountId: 'main',
meta: [
{
name: 'viewport',
content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no'
}
],
links: [
// Link favicons
{
href: 'images/favicon-300.png',
rel: 'apple-touch-icon',
},
{
href: 'images/favicon-300.png',
rel: 'shortcut icon',
}
]
}),
// Enable hot module replacement
new webpack.HotModuleReplacementPlugin(),
],
module: {
rules: [
// Feed JS through babel for maximum support
{
test: /\.js$/,
use: {
loader: 'babel-loader',
options: {
cacheDirectory: true,
presets: ['env'],
}
}
},
// Load our Elm files
{
test: /\.elm$/,
exclude: [/elm-stuff/, /node-modules/],
use: [
{
loader: 'babel-loader',
options: {
cacheDirectory: true,
presets: ['env'],
}
},
{ loader: 'elm-hot-loader' },
{ loader: 'elm-webpack-loader' }
]
},
// Load styles, images, and web-fonts
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
use: 'css-loader',
fallback: 'style-loader'
})
},
{
test: /\.(png|jpg|gif)$/,
use: [
{
options: {
name: './images/[name].[ext]',
},
loader: 'file-loader',
}
]
},
{
test: /\.(woff|woff2|eot|ttf|otf|svg)$/,
use: [
'file-loader'
]
}
]
}
}