File size: 1,328 Bytes
73c6193 |
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 |
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/app.js'
},
resolve: {
alias: {
// Lib: path.resolve(__dirname, 'demo/lib/'),
// Shaders: path.resolve(__dirname, 'demo/lib/src/shaders')
}
},
output: {
filename: '[name].js',
// path: path.resolve(__dirname, 'build')
path: path.resolve(__dirname, '.')
},
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
}
}; |