From 3a2cd4e326a8b8aeee268793cb90321c906665bc Mon Sep 17 00:00:00 2001 From: evanpelle Date: Sat, 12 Oct 2024 18:57:52 -0700 Subject: [PATCH] rename Client.ts -> Main.ts --- src/client/{Client.ts => Main.ts} | 0 webpack.config.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/client/{Client.ts => Main.ts} (100%) diff --git a/src/client/Client.ts b/src/client/Main.ts similarity index 100% rename from src/client/Client.ts rename to src/client/Main.ts diff --git a/webpack.config.js b/webpack.config.js index c1a869453..8deef9255 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -10,7 +10,7 @@ export default (env, argv) => { const isProduction = argv.mode === 'production'; return { - entry: './src/client/Client.ts', + entry: './src/client/Main.ts', output: { filename: 'bundle.js', path: path.resolve(__dirname, 'out'),