Compare commits

..

1 Commits

Author SHA1 Message Date
a1388f1ac7 1
555

Signed-off-by: lxbfYeaa <testing@example.com>
2026-04-13 03:36:17 +00:00
2 changed files with 22 additions and 1 deletions

22
backEnd/webpack.config.ts Normal file
View File

@@ -0,0 +1,22 @@
import path from "path";
module.exports = {
entry: "./index.ts",
module: {
rules: [
{
test: /\.ts$/,
use: "ts-loader",
exclude: /node_modules/,
},
],
},
resolve: {
extensions: [".ts", ".js"],
},
output: {
filename: "index.js",
path: path.resolve(__dirname, "dist"),
},
target: "node",
};

View File

@@ -1 +0,0 @@
VITE_API_BASE_URL = "http://106.52.204.157/api"