From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../aboutwelcome/webpack.aboutwelcome.config.js | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 browser/components/aboutwelcome/webpack.aboutwelcome.config.js (limited to 'browser/components/aboutwelcome/webpack.aboutwelcome.config.js') diff --git a/browser/components/aboutwelcome/webpack.aboutwelcome.config.js b/browser/components/aboutwelcome/webpack.aboutwelcome.config.js new file mode 100644 index 0000000000..681ad09dc8 --- /dev/null +++ b/browser/components/aboutwelcome/webpack.aboutwelcome.config.js @@ -0,0 +1,24 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this file, + * You can obtain one at http://mozilla.org/MPL/2.0/. */ + +const path = require("path"); +const config = require("../newtab/webpack.system-addon.config.js"); +const webpack = require("webpack"); +const absolute = relPath => path.join(__dirname, relPath); +const banner = ` +NOTE: This file is generated by webpack from aboutwelcome.jsx +using the npm bundle task. +`; +module.exports = Object.assign({}, config(), { + entry: absolute("content-src/aboutwelcome.jsx"), + output: { + path: absolute("content"), + filename: "aboutwelcome.bundle.js", + }, + externals: { + react: "React", + "react-dom": "ReactDOM", + }, + plugins: [new webpack.BannerPlugin(banner)], +}); -- cgit v1.2.3