mingwiki-webpack-helloworld-plugin
v1.0.0
Published
```js const path = require('path') const helloworld = require('mingwiki-webpack-helloworld-plugin') module.exports = { entry: { index: "./test.js" }, output: { path: path.resolve(__dirname, './dist'), },
Downloads
3
Readme
mingwiki-webpack-helloworld-plugin
const path = require('path')
const helloworld = require('mingwiki-webpack-helloworld-plugin')
module.exports = {
entry: {
index: "./test.js"
},
output: {
path: path.resolve(__dirname, './dist'),
},
module: {
rules: [
]
},
plugins: [
new helloworld()
]
}