-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.localdev.js
187 lines (181 loc) · 5.11 KB
/
webpack.config.localdev.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
'use strict'
const fs = require('fs')
const path = require('path')
const webpack = require('webpack')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const ScriptExtHtmlWebpackPlugin = require('script-ext-html-webpack-plugin')
const precss = require('precss')
const autoprefixer = require('autoprefixer')
var Dashboard = require('webpack-dashboard');
var DashboardPlugin = require('webpack-dashboard/plugin');
var dashboard = new Dashboard();
// var BrowserSyncPlugin = require('browser-sync-webpack-plugin')
// var proxyMiddleware = require('http-proxy-middleware')
// const target = {
// target: 'http://localhost:1337'
// }
// const data = proxyMiddleware('/data', target)
module.exports = {
cache: true,
devtool: 'cheap-module-eval-source-map',
entry: {
// s: './src/js/s.js',
index: './src/js/index.js',
'service-worker': './src/js/service-worker.js',
'dev-server': 'webpack-dev-server/client?https://localhost:8080/',
// 'hot-dev-server': 'webpack/hot/only-dev-server',
// common: [
// 'lodash'
// // 'jquery'
// ]
},
proxy: {
'/data/*': 'http://localhost:1337/'
},
output: {
path: path.join(__dirname, './dist'),
// Template based on keys in entry above
filename: './js/[name].js'
},
resolve: {
extensions: ['', '.js', '.json'],
// modulesDirectories: [
// './node_modules'
// ]
descriptionFiles: ["package.json"],
modules: [
path.resolve('./'),
'./node_modules'
]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new HtmlWebpackPlugin({
template: './src/index.html'
}),
new ScriptExtHtmlWebpackPlugin({
defaultAttribute: 'defer'
}),
// new BrowserSyncPlugin(
// // BrowserSync options
// {
// // browse to http://localhost:3000/ during development
// host: 'localhost',
// port: 3000,
// // proxy the Webpack Dev Server endpoint
// // (which should be serving on http://localhost:3100/)
// // through BrowserSync
// proxy: 'http://localhost:8080/',
// middleware: [data]
// },
// // plugin optionss
// {
// // prevent BrowserSync from reloading the page
// // and let Webpack Dev Server take care of this
// reload: false
// }
// ),
new ExtractTextPlugin({ filename: './css/main.css', allChunks: true }),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('development')
}),
new DashboardPlugin(dashboard.setData)
],
module: {
loaders: [{
// test: /\.css$/,
// loaders: ['style', 'css'],
// include: path.join(__dirname, 'src'),
// },
test: /\.(css|scss|sass)$/,
loader: ExtractTextPlugin.extract({ fallbackLoader: 'style-loader', loader: 'css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]&sourceMap!postcss-loader!sass' }),
include: path.join(__dirname, './')
},
// {
// test: /\.scss$/,
// loader: ExtractTextPlugin.extract('style-loader', `css-loader?modules
// &importLoaders=1
// &localIdentName=[name]__[local]___[hash:base64:5]`),
// // &sourceMap!postcss-loader!sass`),
// include: path.join(__dirname, 'app'),
// },
{
test: /manifest.json$/,
loader: 'file-loader?name=manifest.json!web-app-manifest-loader'
},
{
test: /\.js$/,
loaders: ['babel-loader'],
exclude: /node_modules/,
include: path.join(__dirname, './'),
query: {
// cacheDirectory: true,
}
// query: {
// "presets":[
// // "es2015-native-modules",
// ["es2015", { "modules": false }],
// "stage-2"
// ],
// "plugins": [
// "transform-runtime",
// "transform-flow-strip-types",
// "transform-object-rest-spread"
// ],
// }
},
{
test: /\.json$/, loader: 'json-loader',
include: path.join(__dirname, './')
},
{
test: /\.(png|jpg|ttf)$/, loader: 'url-loader?limit=8192',
include: path.join(__dirname, './')
}]
},
// devServer: {
// watchOptions: {
// aggregateTimeout: 300,
// poll: 300
// }
// hot: true,
// inline: true,
// host: '0.0.0.0',
// port: 8080,
// contentBase: 'src/',
// historyApiFallback: true,
// quiet: false,
// noInfo: false,
// key: fs.readFileSync('./server/private/server.key'),
// cert: fs.readFileSync('./server/private/server.cert'),
// proxy: {
// '/data': {
// target: 'http://localhost:1337'
// // pathRewrite: {
// // '^/api' : ''
// // }
// }
// }
// },
postcss () {
return [precss, autoprefixer]
},
// sassLoader: {
// includePaths: [path.resolve(__dirname, 'app')],
// },
// devServer: {
// contentBase: './dist',
// hot: true,
// quiet: false,
// noInfo: false,
// },
// externals: {
// jquery: {
// root: 'jQuery',
// commonjs: 'jquery',
// commonjs2: 'jquery',
// amd: 'jquery'
// }
// }
}