first commit for refactored project

This commit is contained in:
KS Jannette
2026-05-23 17:08:47 -04:00
commit 6545f8f549
166 changed files with 48911 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
const path = require("path");
module.exports = {
mode: "development",
entry: "./App.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "foo.bundle.js",
},
test: /\.svg$/,
use: [
{
loader: "svg-url-loader",
include: [Path.join(__dirname, "src/Assets")],
options: {
limit: 10000,
},
},
],
};