Merge pull request #1054 from thecodingmachine/fixWebpackConfig

FIX: webpack config NodePolyfillPlugin
This commit is contained in:
Kharhamel 2021-05-17 16:33:04 +02:00 committed by GitHub
commit 867f783d5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 639 additions and 12 deletions

View file

@ -15,6 +15,7 @@
"html-webpack-plugin": "^5.3.1", "html-webpack-plugin": "^5.3.1",
"jasmine": "^3.5.0", "jasmine": "^3.5.0",
"mini-css-extract-plugin": "^1.6.0", "mini-css-extract-plugin": "^1.6.0",
"node-polyfill-webpack-plugin": "^1.1.2",
"sass": "^1.32.12", "sass": "^1.32.12",
"sass-loader": "^11.1.0", "sass-loader": "^11.1.0",
"ts-loader": "^9.1.2", "ts-loader": "^9.1.2",

View file

@ -5,6 +5,7 @@ const path = require('path');
const webpack = require('webpack'); const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin'); const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin")
const mode = process.env.NODE_ENV ?? 'development'; const mode = process.env.NODE_ENV ?? 'development';
const isProduction = mode === 'production'; const isProduction = mode === 'production';
@ -77,6 +78,7 @@ module.exports = {
new webpack.ProvidePlugin({ new webpack.ProvidePlugin({
Phaser: 'phaser' Phaser: 'phaser'
}), }),
new NodePolyfillPlugin(),
new webpack.EnvironmentPlugin({ new webpack.EnvironmentPlugin({
'API_URL': null, 'API_URL': null,
'SKIP_RENDER_OPTIMIZATIONS': false, 'SKIP_RENDER_OPTIMIZATIONS': false,

File diff suppressed because it is too large Load diff