webpack/test/hotCases/define/issue-6962/webpack.config.js

13 lines
218 B
JavaScript

"use strict";
const webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
plugins: [
new webpack.DefinePlugin({
DEFINE_PATH: JSON.stringify("./a")
})
]
};