From 62dbaa70241d63ac5bf7cc35d5193a798664b69e Mon Sep 17 00:00:00 2001 From: Przemyslaw Jan Pietrzak Date: Tue, 17 Apr 2018 12:14:24 +0200 Subject: [PATCH] fix webpack build --- index.html | 2 +- webpack.config.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index ad95a01..f15e9d9 100644 --- a/index.html +++ b/index.html @@ -12,6 +12,6 @@ - + diff --git a/webpack.config.js b/webpack.config.js index 0cd7558..0818ea1 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -10,7 +10,7 @@ module.exports = { app: './src/main.ts' }, output: { - filename: './dist/bundle.js' + filename: './bundle.js' }, resolve: { extensions: ['.ts', '.js'] @@ -41,7 +41,7 @@ module.exports = { devtool: !isProduction ? 'source-map' : 'none', plugins: [ new webpack.ProvidePlugin({ - THREE: 'three', // TODO + THREE: 'three', }) ].concat(isProduction ? [] : [ new HtmlWebpackPlugin({