forked from dwqdaiwenqi/react-3d-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
62 lines (54 loc) · 1.85 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
var webpack = require("webpack");
var path = require("path");
const ENV = process.env.npm_lifecycle_event;
module.exports = {
entry: ENV==='site' ? './site/src/main.js' : './src/main.js',
output: ENV==='site' ?
{ path: __dirname+'/site/dist/',filename:'scripts/[name].js' } :
{ path: __dirname+'/dist/',filename: 'scripts/react-3d-viewer.js',library: 'React3DViewer',libraryTarget: 'umd' },
module: {
rules: [
{
test: /\.js$/,
exclude: /(node_modules)/,
loader: 'babel-loader',
query: {
presets: ['env', 'stage-0', 'react'],
"plugins": ["transform-decorators-legacy"]
}
},
{
test: /\.(css|less)$/,
use: [
'style-loader',
'css-loader',
{
loader: 'postcss-loader',
options: {
plugins: ()=>[require('autoprefixer')]
}},
'less-loader'
]
}
, {
test: /\.(png|jpg|jpeg|gif|webp)$/,
use: [
{
loader: 'file-loader',
options: {
publicPath:''
,name :'img/[name].[ext]?[hash:6]'
}
}
]
}
,{
test: /\.(md|obj|mtl)$/,
loader : 'raw-loader'
}
]
},
plugins: [
new webpack.BannerPlugin(" react-3d-viewer v"+require('./package.json').version+"\r\n By https://github.com/dwqdaiwenqi \r\n Github: https://github.com/dwqdaiwenqi/react-3d-viewer\r\n MIT Licensed."),
]
}