Files
Novodraft/ax3Client/webpack.config.js
2026-05-23 17:08:47 -04:00

21 lines
366 B
JavaScript

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,
},
},
],
};