webpack/test/configCases/library/invalid-name/webpack.config.js

9 lines
149 B
JavaScript
Raw Normal View History

"use strict";
2021-01-06 22:01:59 +08:00
/** @type {import("../../../../").Configuration} */
module.exports = {
output: {
library: ["123-hello world", "hello world"]
}
};