webpack/test/configCases/asset-modules/build-http/webpack.config.js

16 lines
345 B
JavaScript
Raw Normal View History

"use strict";
2024-11-02 04:27:52 +08:00
const path = require("path");
2024-11-02 04:32:27 +08:00
/** @type {import("../../../../").Configuration} */
2024-11-02 04:27:52 +08:00
module.exports = {
mode: "development",
experiments: {
buildHttp: {
allowedUris: [() => true],
lockfileLocation: path.resolve(__dirname, "./lock-files/lock.json"),
cacheLocation: path.resolve(__dirname, "./lock-files/test")
}
}
};