-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathwebpack-viewer.config.js
59 lines (58 loc) · 1.4 KB
/
webpack-viewer.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
var path = require('path');
var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');
// const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
module.exports = {
entry: {
// app: './index.js'
app: './src/GLTFAvatarViewer.js'
},
// resolve: {
// alias: {
// // Lib: path.resolve(__dirname, 'demo/lib/'),
// // Shaders: path.resolve(__dirname, 'demo/lib/src/shaders')
// }
// },
output: {
filename: 'AvatarViewer.js',
library: 'AvatarViewer',
// libraryTarget: 'umd',
libraryTarget: 'var',
// path: path.resolve(__dirname, 'build')
path: path.resolve(__dirname, 'build-viewer')
},
module: {
rules: [
// {
// test: /\.css$/,
// use: [
// 'style-loader',
// 'css-loader'
// ]
// }
// {
// test: /\.(png|jpg|gif)$/,
// use: [
// 'file-loader'
// ]
// },
// {
// test: /\.(glsl|vs|fs)$/,
// use: [
// 'shader-loader'
// ]
// }
]
},
plugins: [
// new HtmlWebpackPlugin({
// title: "gl-avatar-three-js",
// template: "html/test-template.html"
// })
],
devServer: {
// contentBase: path.join(__dirname, "demo"),
contentBase: __dirname,
port: 7000
}
};