-
Notifications
You must be signed in to change notification settings - Fork 87
/
webpack.config.oembed.js
65 lines (62 loc) · 1.75 KB
/
webpack.config.oembed.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
const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const less_loader = ExtractTextPlugin.extract('vue-style?sourceMap', 'css?sourceMap!less?sourceMap=source-map-less-inline');
const config = {
entry: './js/oembed',
output: {
path: path.join(__dirname, 'udata', 'static'),
publicPath: '/static/',
filename: 'oembed.js',
},
module: {
loaders: [
{test: /\.less$/, loader: less_loader},
{test: /\.(woff|svg|ttf|eot|otf)([\?]?.*)$/, exclude: /img/, loader: 'file-loader?name=[name].[ext]'},
{
test: /\.js$/,
loader: 'babel-loader',
query: {
presets: ['env'],
comments: false
}
},
]
},
node: {
fs: 'empty',
net: 'empty',
tls: 'empty'
},
plugins: [
// Prevent webpack 1.x false positive
require('webpack-fail-plugin'),
new ExtractTextPlugin('oembed.css'),
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify(process.env.NODE_ENV)
}
}),
],
};
if (process.env.NODE_ENV === 'production') {
config.plugins.push(
new webpack.optimize.UglifyJsPlugin({
minimize: true,
output: {
comments: false,
screw_ie8: true
},
mangle: {
screw_ie8: true
},
compress: {
warnings: false,
screw_ie8: true
}
})
);
} else {
config.devtool = '#cheap-module-source-map';
}
module.exports = config;