-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.dev.config.js
86 lines (80 loc) · 3 KB
/
webpack.dev.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
const path = require('path');
const webpack = require('webpack');
const defaultContext = '/fivestaradminstorefront';
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const DashboardPlugin = require('webpack-dashboard/plugin');
// Webpak Dashboard
var Dashboard = require('webpack-dashboard');
var dashboard = new Dashboard();
module.exports = {
devtool: 'inline-source-map',
cache: true,
/*eslint-disable*/
context: path.join(__dirname, 'src'),
entry: {
// dynamically add by server.js
},
output: {
path: path.join(__dirname, 'build/static'),
filename: '[name].bundle.js',
publicPath: `${defaultContext}/_admin/`,
chunkFilename: '[name].[chunkhash:8].chunk.js',
sourceMapFilename: "[name].map"
},
devServer: {
contentBase: path.join(__dirname, 'src'),
/*eslint-enable*/
proxy: {
'!(**/_admin/**|/_tmp/**|/**/_admin/|/_tmp/*/**)': {
//target: 'http://localhost:8088',
//target: 'https://localhost:9002',
target: 'http://localhost:8079',
//target:'https://172.26.132.3',
secure: false
}
}
},
plugins: [
// new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
new ExtractTextPlugin({filename: 'styles.css'}),
new webpack.DefinePlugin({
ENV: '"dev"',
}),
new DashboardPlugin(dashboard.setData),
],
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules|build/,
use: ['react-hot-loader', 'babel-loader?cacheDirectory=true']
}, {
test: /\.(ttf|eot|woff|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: 'file-loader'
}, {
test: /\.less$/,
// use: ExtractTextPlugin.extract({fallback:'style-loader',
// use: [{loader:'css-loader', options:{ sourceMap: true }},
// {loader:'postcss-loader', options:{
// ident: 'postcss',
// sourceMap: true,
// plugins: loader=>[require('autoprefixer')()]
// }},
// {loader:'less-loader', options:{ sourceMap: true }}]
// })
use: ['style-loader', {loader:'css-loader', options:{ sourceMap: true }},
{loader:'postcss-loader', options:{
ident: 'postcss',
sourceMap: true,
plugins: loader=>[require('autoprefixer')()]
}},
{loader:'less-loader', options:{ sourceMap: true }}]
}, {
test: /\.(png|jpg)$/,
use: 'url-loader?limit=8192'
}
]
}
};