mirror of https://github.com/webpack/webpack.git
20 lines
309 B
JavaScript
20 lines
309 B
JavaScript
const {
|
|
experiments: {
|
|
schemes: { HttpsUriPlugin }
|
|
}
|
|
} = require("../../../../");
|
|
|
|
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
mode: "development",
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.md$/,
|
|
loader: "./loaders/md-loader"
|
|
}
|
|
]
|
|
},
|
|
plugins: [new HttpsUriPlugin()]
|
|
};
|