forked from evgeniy-gordey/django-pump-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
94 lines (87 loc) · 3.12 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
var webpack = require('webpack')
// ==================== MAIN SETTINGS ====================
module.exports = {
entry: ['babel-polyfill', './pump_bot/static/main.js'],
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
'scss': 'vue-style-loader!css-loader!sass-loader',
'sass': 'vue-style-loader!css-loader!sass-loader?indentedSyntax'
},
transformToRequire: {video: 'src', source: 'src', img: 'src', image: 'xlink:href'}
}
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {limit: 10000, name: '[name].[hash:7].[ext]'}
},
{
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
loader: 'url-loader',
options: {limit: 10000, name: '[name].[hash:7].[ext]'}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {limit: 10000, name: '[name].[hash:7].[ext]'}
}
]
},
plugins: [],
resolve: {
alias: {'vue$': 'vue/dist/vue.esm.js'}
}
}
// ==================== PRODUCTION SETTINGS ====================
if (process.env.NODE_ENV === 'production') {
module.exports.devtool = '#source-map'
module.exports.output = {
path: '/app/staticfiles/dist/',
publicPath: 'http://localhost:3000/static/dist/',
filename: 'build.js'
},
module.exports.plugins.push(
new webpack.DefinePlugin({'process.env': {NODE_ENV: '"production"'}}),
new webpack.LoaderOptionsPlugin({minimize: true}),
new webpack.optimize.UglifyJsPlugin({sourceMap: true, compress: {warnings: false}}),
)
}
// ==================== DEVELOPMENT SETTINGS ====================
if (process.env.NODE_ENV === 'development') {
module.exports.devtool = '#eval-source-map',
module.exports.output = {
path: '/app/pump_bot/static/dist/',
publicPath: 'http://localhost:3000/static/dist/',
filename: 'build.js'
},
module.exports.plugins.push(
new webpack.DefinePlugin({'process.env': {NODE_ENV: '"development"'}}),
new webpack.NoEmitOnErrorsPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.LoaderOptionsPlugin({vue: {loader: {js: 'babel-loader'}}})
),
module.exports.devServer = {
historyApiFallback: true,
noInfo: true,
host: '0.0.0.0',
port: 3000,
hot: true,
filename: 'bundle.js',
headers: {
'Access-Control-Allow-Origin': 'http://localhost:8000',
'Access-Control-Allow-Headers': 'X-Requested-With'
}
},
module.exports.performance = {hints: false},
module.exports.watchOptions = {poll: 1000}
}