mirror of https://github.com/webpack/webpack.git
16 lines
345 B
JavaScript
16 lines
345 B
JavaScript
"use strict";
|
|
|
|
const path = require("path");
|
|
|
|
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
mode: "development",
|
|
experiments: {
|
|
buildHttp: {
|
|
allowedUris: [() => true],
|
|
lockfileLocation: path.resolve(__dirname, "./lock-files/lock.json"),
|
|
cacheLocation: path.resolve(__dirname, "./lock-files/test")
|
|
}
|
|
}
|
|
};
|