-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathwebpack.common.js
85 lines (84 loc) · 1.81 KB
/
webpack.common.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
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
module: {
rules: [
{
test: /\.(js|jsx|tsx|ts)$/,
loader: 'babel-loader?cacheDirectory',
include: path.resolve(__dirname, 'src'),
options: {
presets: [
['@babel/preset-env', { modules: false }],
'@babel/preset-react',
'@babel/preset-typescript',
],
plugins: [
'@babel/plugin-transform-runtime',
'@babel/plugin-syntax-dynamic-import',
['@babel/plugin-proposal-decorators', { legacy: true }],
'@babel/plugin-syntax-async-generators',
['@babel/plugin-proposal-class-properties', { loose: false }],
'@babel/plugin-proposal-object-rest-spread',
'react-hot-loader/babel',
'dynamic-import-webpack',
['import', { libraryName: 'antd', style: true }],
],
},
exclude: /node_modules/,
},
{
test: /\.(css|less)$/,
use: [
'style-loader',
{
loader: 'css-loader',
},
{
loader: 'less-loader',
options: {
javascriptEnabled: true,
},
},
],
},
{
test: /\.(ico|png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader',
options: {
publicPath: './',
name: 'fonts/[hash].[ext]',
limit: 10000,
},
},
],
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
title: 'React 3D Editor',
}),
],
optimization: {
splitChunks: {
cacheGroups: {
vendor: {
test: /node_modules/,
chunks: 'initial',
name: 'vendor',
enforce: true,
},
},
},
noEmitOnErrors: true,
},
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: ['.ts', '.tsx', '.js', '.jsx', '.less'],
},
node: {
net: 'empty',
fs: 'empty',
tls: 'empty',
},
};