mirror of https://github.com/webpack/webpack.git
8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
|
var path = require("path");
|
||
|
module.exports = {
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
library: path.resolve(__dirname, "../../../js/config/library/0-create-library/bundle0.js")
|
||
|
}
|
||
|
}
|
||
|
};
|