/* eslint-disable */ const { getConfig, applyEntries, getBaseConfig, dev, } = require('./webpack.config.base'); const { join } = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin'); const webpack = require('webpack'); /* eslint-enable */ const PORT = 4444; const appConfig = getConfig(getBaseConfig('app'), { target: 'web', devServer: { contentBase: join(__dirname, 'build'), port: PORT, hot: true, inline: true, disableHostCheck: true, }, plugins: dev ? [ new webpack.HotModuleReplacementPlugin(), new ReactRefreshWebpackPlugin(), ] : [], }); const extPopupConfig = getConfig({ target: 'web', entry: {}, output: {}, }); applyEntries(appConfig, [ ...(process.env.ENABLE_AUTOFILL ? ['form-fill', 'credentials'] : []), 'app', 'permissions', 'auth', 'find', 'menu', 'search', 'preview', 'tabgroup', 'downloads-dialog', 'add-bookmark', 'zoom', 'settings', 'history', 'newtab', 'bookmarks', ]); if (process.env.ENABLE_EXTENSIONS) { extPopupConfig.entry['extension-popup'] = [ `./src/renderer/views/extension-popup`, ]; extPopupConfig.plugins.push( new HtmlWebpackPlugin({ title: 'Wexond', template: 'static/pages/extension-popup.html', filename: `extension-popup.html`, chunks: [`vendor.app`, 'extension-popup'], }), ); module.exports = [appConfig, extPopupConfig]; } else { module.exports = appConfig; }