Add extendedAPI plugin to access globals

pull/18257/head
Jaiwanth 2021-08-04 12:45:10 +05:30
parent c3995eea5e
commit 42e3fd0282
1 changed files with 5 additions and 2 deletions

View File

@ -6,6 +6,7 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const TerserPlugin = require('terser-webpack-plugin'); const TerserPlugin = require('terser-webpack-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin'); const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const HtmlWebpackInjectPreload = require('@principalstudio/html-webpack-inject-preload'); const HtmlWebpackInjectPreload = require('@principalstudio/html-webpack-inject-preload');
const { ExtendedAPIPlugin } = require('webpack');
let ogImageUrl = process.env.RIOT_OG_IMAGE_URL; let ogImageUrl = process.env.RIOT_OG_IMAGE_URL;
if (!ogImageUrl) ogImageUrl = 'https://app.element.io/themes/element/img/logos/opengraph.png'; if (!ogImageUrl) ogImageUrl = 'https://app.element.io/themes/element/img/logos/opengraph.png';
@ -219,7 +220,7 @@ module.exports = (env, argv) => {
// It's important that this plugin is last otherwise we end // It's important that this plugin is last otherwise we end
// up with broken CSS. // up with broken CSS.
require('postcss-preset-env')({stage: 3, browsers: 'last 2 versions'}), require('postcss-preset-env')({ stage: 3, browsers: 'last 2 versions' }),
], ],
parser: "postcss-scss", parser: "postcss-scss",
"local-plugins": true, "local-plugins": true,
@ -257,7 +258,7 @@ module.exports = (env, argv) => {
// It's important that this plugin is last otherwise we end // It's important that this plugin is last otherwise we end
// up with broken CSS. // up with broken CSS.
require('postcss-preset-env')({stage: 3, browsers: 'last 2 versions'}), require('postcss-preset-env')({ stage: 3, browsers: 'last 2 versions' }),
], ],
parser: "postcss-scss", parser: "postcss-scss",
"local-plugins": true, "local-plugins": true,
@ -437,6 +438,8 @@ module.exports = (env, argv) => {
files: [{ match: /.*Inter.*\.woff2$/ }], files: [{ match: /.*Inter.*\.woff2$/ }],
}), }),
new ExtendedAPIPlugin(),
...additionalPlugins, ...additionalPlugins,
], ],