-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.dev.config.js
More file actions
90 lines (89 loc) · 1.89 KB
/
Copy pathwebpack.dev.config.js
File metadata and controls
90 lines (89 loc) · 1.89 KB
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
const CopyWebpackPlugin = require('copy-webpack-plugin')
const webpack = require('webpack')
const { SourceMapDevToolPlugin } = require('webpack')
const nodeExternals = require('webpack-node-externals')
const HtmlWebpackPlugin = require('html-webpack-plugin')
module.exports = {
entry: {
mainDev: __dirname + '/src/index.js',
},
output: {
filename: '[name].js',
path: __dirname + '/dist',
},
performance: {
hints: false,
},
plugins: [
new SourceMapDevToolPlugin({
filename: '[file].map',
}),
new CopyWebpackPlugin({
patterns: [
{
from: __dirname + '/src/index_dev.html',
},
{
from: __dirname + '/src/favicon.ico',
},
{
from: __dirname + '/src/db.json',
},
{
from: __dirname + '/src/assets/',
to: __dirname + '/dist/assets',
},
],
}),
new webpack.EnvironmentPlugin({
NODE_ENV: process.env.NODE_ENV,
}),
new HtmlWebpackPlugin({
filename: 'index.html',
inject: false,
template: 'src/index_dev.html',
}),
],
resolve: {
extensions: ['.js', '.ttf', '.obj', '.mtl', '.ico', '.tga', '.*', '*'],
},
devServer: {
inline: true,
port: 8080,
},
module: {
rules: [
{
test: /\.test.js$/,
exclude: ['/node_modules/', '/src/assets'],
use: [
{
loader: 'babel-loader',
options: {},
},
],
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
loader: 'file-loader',
},
{
test: /\.(css)$/,
use: ['css-loader'],
},
{
test: /\.js$/,
enforce: 'pre',
use: ['source-map-loader'],
},
{
test: /\.obj$/,
loader: 'webpack-obj-loader',
},
{
test: /\.mtl$/,
loader: 'mtl-loader',
},
],
},
}