-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
71 lines (63 loc) · 1.66 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
'use strict';
const CleanPlugin = require('clean-webpack-plugin');
const exec = require('sync-exec');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const autoprefixer = require('autoprefixer');
const glob = require('glob');
const path = require('path');
const webpack = require('webpack');
const PROD = (process.env.NODE_ENV === 'production');
module.exports = {
context: path.join(__dirname, 'src'),
entry: {
'underPressure': './js',
},
output: {
publicPath: '//localhost:3000/',
path: path.join(__dirname, 'dist'),
filename: '/js/[name].js'
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /(node_modules)/
},
{
test: /\.css$/,
loader: ExtractTextPlugin.extract("style-loader", "css-loader"),
exclude: /(node_modules)/
},
{
test: /\.less$/,
loader: ExtractTextPlugin.extract("style-loader", "css-loader!less-loader"),
exclude: /(node_modules)/
},
{
test: /\.html$/,
loader: 'html'
},
{
test: /\.(ico|jpg|png)$/,
loader: 'file?name=/[path][name].[ext]'
},
{
test: /\.(otf|ttf|eot|svg|woff(2)?)/,
loader: "file?name=fonts/[name].[ext]"
},
]
},
plugins: [
//new CleanPlugin(['dist/css', 'dist/fonts', 'dist/images', 'dist/js']),
new ExtractTextPlugin('css/[name].css',{allChunks: true}),
new webpack.DefinePlugin({
'process.env': { NODE_ENV: JSON.stringify(process.env.NODE_ENV || 'development') }
})
],
devServer: {
contentBase: './src',
host: '0.0.0.0',
https: true
}
};