Spaces:
Running
Running
File size: 4,209 Bytes
0646b18 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
import HtmlWebpackPlugin from "html-webpack-plugin";
import CopyWebpackPlugin from "copy-webpack-plugin";
import TerserPlugin from "terser-webpack-plugin";
import webpack from "webpack";
import path from "path";
import { fileURLToPath } from "url";
import { createRequire } from "module";
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const require = createRequire(import.meta.url);
// Resolve React paths dynamically so it works with or without hoisting
const reactPath = path.dirname(require.resolve("react/package.json"));
const reactDomPath = path.dirname(require.resolve("react-dom/package.json"));
// Check for the --fake-stream flag
const fakeStream = process.env.FAKE_STREAM === "true";
console.log(fakeStream);
// Base copy patterns
const baseCopyPatterns = [
{
from: "./static/tailwind.js",
to: "tailwind.js",
},
{
from: "./static/background.js",
to: "background.js",
},
{
from: "./static/manifest.json",
to: "manifest.json",
},
];
// Conditionally add fake_data.json
const copyPatterns = fakeStream
? [
...baseCopyPatterns,
{
from: "./static/fake_data.json",
to: "fake_data.json",
},
]
: baseCopyPatterns;
export default {
mode: process.env.NODE_ENV === "production" ? "production" : "development",
entry: "./src/App.tsx",
output: {
path: path.resolve(__dirname, "dist"),
filename: "[name].[contenthash].js",
chunkFilename: "[name].[contenthash].bundle.js",
clean: true,
publicPath: "/",
},
resolve: {
extensions: [".ts", ".tsx", ".js", ".jsx", ".css"],
alias: {
react: reactPath,
"react-dom": reactDomPath,
},
},
optimization: {
minimize: process.env.NODE_ENV === "production",
minimizer: [
new TerserPlugin({
terserOptions: {
compress: {
drop_console: process.env.NODE_ENV === "production",
drop_debugger: true,
pure_funcs: process.env.NODE_ENV === "production" ? ['console.log', 'console.info'] : [],
},
format: {
comments: false,
},
},
extractComments: false,
}),
],
usedExports: true,
sideEffects: false,
splitChunks: {
chunks: "all",
maxSize: 244 * 1024,
cacheGroups: {
carbonIcons: {
test: /[\\/]node_modules[\\/]@carbon[\\/]icons-react[\\/]/,
name: "carbon-icons",
priority: 20,
reuseExistingChunk: true,
},
carbonAI: {
test: /[\\/]node_modules[\\/]@carbon[\\/]ai-chat[\\/]/,
name: "carbon-ai",
priority: 15,
reuseExistingChunk: true,
},
reactVendor: {
test: /[\\/]node_modules[\\/](react|react-dom)[\\/]/,
name: "react-vendor",
priority: 10,
reuseExistingChunk: true,
},
vendor: {
test: /[\\/]node_modules[\\/]/,
name: "vendors",
priority: 5,
reuseExistingChunk: true,
},
},
},
},
module: {
rules: [
{
test: /\.(ts|tsx|js|jsx)$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: [
["@babel/preset-env", { modules: false }],
"@babel/preset-react",
"@babel/preset-typescript"
],
},
},
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"],
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/i,
type: 'asset/resource',
generator: {
emit: false,
},
},
],
},
plugins: [
new HtmlWebpackPlugin({
template: "./index.html",
inject: "body",
}),
new CopyWebpackPlugin({
patterns: copyPatterns,
}),
new webpack.DefinePlugin({
FAKE_STREAM: JSON.stringify(fakeStream),
}),
],
devtool: process.env.NODE_ENV === "production" ? false : "source-map",
devServer: {
static: path.join(__dirname, "dist"),
compress: true,
port: 3002,
allowedHosts: "all",
open: true,
hot: true,
},
};
|