-
Notifications
You must be signed in to change notification settings - Fork 15
/
webpack.config.js
72 lines (62 loc) · 1.91 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
var BowerWebpackPlugin = require("bower-webpack-plugin");
var webpack = require("webpack");
var path = require('path');
module.exports = {
debug: true,
devtool: 'sourcemap',
context: __dirname,
entry: ['bootstrap-loader', "./js/application/angular/app_wowjs.js"],
output: {
path: 'build',
filename: "[name].js",
library: "[name]"
},
resolve: {
extensions: ['', '.js', '.jsx','.glsl'],
root: [
path.resolve('./js/application/angular'),
path.resolve('./glsl/'),
path.resolve('./js/lib/bower')
]
},
module: {
loaders: [
{
test: /\.js?$/,
loader: 'babel',
exclude: [/node_modules/, /zip.js/, /text-encoding/ ],
query: {
presets: ['es2015']
}
},
{
test: /\.glsl?$/,
loader: 'raw'
},
{
test: /\.glsl?$/,
loader: 'glslify'
},
{ test: /\.css$/, loader: "style-loader!css-loader" },
{
test: /\.scss$/,
loaders: ["style", "css", "sass"]
},
{ test: /\.woff$/, loader: "url-loader?limit=10000&minetype=application/font-woff" },
{ test: /\.woff2$/, loader: "url-loader?limit=10000&minetype=application/font-woff" },
{ test: /\.ttf$/, loader: "file-loader" },
{ test: /\.eot$/, loader: "file-loader" },
{ test: /\.svg$/, loader: "file-loader" },
{ test: /\.json$/, loader: 'json' }
]
},
plugins: [
new webpack.ResolverPlugin(
new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin(".bower.json", ["main"])
)
],
devServer: {
contentBase: '.',
stats: 'minimal'
}
};