1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import path from 'path';
- import HtmlWebpackPlugin from 'html-webpack-plugin';
- import webpack from 'webpack';
- export default {
- devtool: 'inline-source-map',
- mode: 'development',
- entry: [
- path.resolve(__dirname, 'src/main.js')
- ],
- target: 'web',
- output: {
- path: path.resolve(__dirname, 'src'),
- publicPath: '/',
- filename: 'bundle.js'
- },
- plugins: [
- new webpack.DefinePlugin({
- CANVAS_RENDERER: JSON.stringify(true),
- WEBGL_RENDERER: JSON.stringify(true)
- }),
- // Create HTML file that includes reference to bundled JS.
- new HtmlWebpackPlugin({
- template: 'src/index.html',
- inject: true
- })
- ],
- module: {
- rules: [
- { test: /\.js$/, exclude: /node_modules/, loaders: "babel-loader" },
- {
- test: /\.(gif|png|jpe?g|svg|xml)$/i,
- use: "file-loader"
- },
- {
- test: [/\.vert$/, /\.frag$/],
- use: "raw-loader"
- }
- ]
- }
- };
|