first commit

This commit is contained in:
Kenneth Jannette
2024-01-11 18:24:41 -06:00
commit 4c1fb67383
103 changed files with 29954 additions and 0 deletions

20
webpack.config.js Normal file
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,
},
},
],
};