webpack-prompt-plugin
v1.1.11
Published
Used to prompt ip link and some other information when webpack-dev-server Successfully started
Downloads
39
Maintainers
Readme
webpack-prompt-plugin
Used to prompt ip link and some other information when webpack-dev-server Successfully started
usage
install
yarn add webpack-prompt-plugin --dev
或者
pnpm install webpack-prompt-plugin -D
const webpackPromptPlugin = require('webpack-prompt-plugin');
module.exports = {
// ...
plugins: [
new webpackPromptPlugin()
],
}
// 带参数
module.exports = {
// ...
plugins: [
new WebpackPromptPlugin({
tips: [
{
name: '[🏀] web project',
color: 'green'
},
'this is react spa project'
],
style: 'table'
})
],
}
Instance attributes
style 'default' | 'text' | 'table'
default
text
table
default style is default
😂
tips: Array<{ text: string, color?: string } | string>
Prompt message queue, array object or string array can be
{
tips: [
{
name: '[🏀] web project',
color: 'green'
},
'this is react spa project'
],
}