forked from jessicarobins/jd-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
57 lines (55 loc) · 1.45 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
var webpack = require("webpack");
var HtmlWebpackPlugin = require('html-webpack-plugin');
var env = {
dev: 'https://jessdocs-jrobins.c9users.io:8082',
prod: 'https://jd-api.herokuapp.com'
};
module.exports = {
entry: './src/app/index.module.js',
module: {
loaders: [
{ test: require.resolve('angular'),
loader: 'exports?window.angular'
},
{ test: /\.js$/,
exclude: /node_modules/,
loaders: ['ng-annotate', 'babel-loader?presets[]=es2015']},
{ test: /\.scss$/,
loaders: ["style", "css", "sass"]},
{ test: /\.css$/,
loaders: ["style", "css"]},
{ test: /\.html$/,
loader: "html" },
{ test: /\.svg/,
loader: "file" },
{ test: /\.png/,
loader: "file" }
]
},
output: { filename: 'index.module.js', path: 'dist' },
resolve: {
alias: {
'jessdocs': __dirname + '/src/app/jessdocs.module'
}
},
plugins: [
new webpack.DefinePlugin({
'API_URL': JSON.stringify(env[process.env.NODE_ENV || 'dev'])
}),
new HtmlWebpackPlugin({
title: 'jessdocs',
template: './src/index.html'
}),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery",
angular: "exports?window.angular!angular",
_: "lodash",
moment: "moment",
tinycolor: "tinycolor2"
}),
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.optimize.DedupePlugin(),
]
}