-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.dev.js
More file actions
150 lines (144 loc) · 3.4 KB
/
Copy pathwebpack.dev.js
File metadata and controls
150 lines (144 loc) · 3.4 KB
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
const { InjectManifest } = require("workbox-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const CopyPlugin = require("copy-webpack-plugin");
const webpack = require("webpack");
const path = require("path");
// Load environment variables if dotenv is available
try {
require("dotenv").config();
} catch (e) {
// dotenv not installed, use process.env directly
console.log("dotenv not found, using process.env directly");
}
// Get REACT_APP_ environment variables
const getClientEnvironment = () => {
const raw = Object.keys(process.env)
.filter((key) => key.startsWith("REACT_APP_"))
.reduce(
(env, key) => {
env[key] = process.env[key];
return env;
},
{
NODE_ENV: process.env.NODE_ENV || "development",
// Fallback for REACT_APP_API if not set
REACT_APP_API:
process.env.REACT_APP_API || "https://api.openbrewerydb.org/v1/",
}
);
// Stringify all values so we can feed into webpack.DefinePlugin
const stringified = {
"process.env": Object.keys(raw).reduce((env, key) => {
env[key] = JSON.stringify(raw[key]);
return env;
}, {}),
};
return { raw, stringified };
};
const env = getClientEnvironment();
module.exports = {
mode: "development",
entry: "./src/index.tsx",
devtool: "eval-source-map",
devServer: {
static: {
directory: path.join(__dirname, "public"),
},
port: 3000,
open: true,
hot: true,
historyApiFallback: true,
compress: true,
},
module: {
rules: [
{
// Handle tsx files
test: /\.tsx?$/,
use: [
{
loader: "ts-loader",
options: {
transpileOnly: true, // Faster builds in dev
},
},
],
exclude: /node_modules/,
},
{
// Handle CSS modules
test: /\.module\.css$/,
use: [
"style-loader",
{
loader: "css-loader",
options: {
modules: {
localIdentName: "[name]__[local]--[hash:base64:5]", // Better debugging in dev
},
sourceMap: true,
},
},
],
},
{
// Handle regular CSS files
test: /\.css$/,
use: [
"style-loader",
{
loader: "css-loader",
options: {
sourceMap: true,
},
},
],
exclude: /\.module\.css$/,
},
{
// Handle images
test: /\.(png|jpg|jpeg|gif|svg)$/,
type: "asset/resource",
generator: {
filename: "images/[name][ext]",
},
},
],
},
resolve: {
extensions: [".tsx", ".ts", ".js"],
alias: {
"@": path.resolve(__dirname, "src"),
},
},
plugins: [
new HtmlWebpackPlugin({
template: "./public/index.html",
inject: "body",
}),
new webpack.DefinePlugin(env.stringified),
new webpack.HotModuleReplacementPlugin(),
new CopyPlugin({
patterns: [
{
from: "public",
to: ".",
globOptions: {
ignore: ["**/index.html"],
},
},
],
}),
],
optimization: {
splitChunks: {
chunks: "all",
},
},
output: {
path: path.resolve(__dirname, "dist"),
filename: "[name].bundle.js",
publicPath: "/",
clean: true,
},
};