-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.ts
32 lines (27 loc) · 993 Bytes
/
webpack.config.ts
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
import dotenv from 'dotenv';
import path from 'path';
import { buildWebpackConfig } from './config/build/buildWebpackConfig';
import { type BuildEnv, type BuildPaths } from './config/build/types/config';
import type webpack from 'webpack';
dotenv.config({ path: './.env' });
export default (env: BuildEnv): webpack.Configuration => {
const paths: BuildPaths = {
entry: path.resolve(__dirname, 'src', 'index.tsx'),
build: path.resolve(__dirname, 'build'),
html: path.resolve(__dirname, 'public', 'index.html'),
src: path.resolve(__dirname, 'src'),
locales: path.resolve(__dirname, 'public', 'locales'),
buildLocales: path.resolve(__dirname, 'build', 'locales'),
};
const mode = env.mode || 'development';
const isDev = mode === 'development';
const PORT = env.port || 3000;
const apiUrl = isDev ? 'http://localhost:8000' : process.env.API_URL as string;
return buildWebpackConfig({
mode,
paths,
isDev,
port: PORT,
apiUrl,
});
};