plugins: [nodeExternalsPlugin()],
.box {
width: 400px;
min-height: 200px;
}
.content {
display: flex;
justify-content: center;
opacity: 0;
transition: opacity 2s;
}
.box:hover .content {
transition-delay: 1s;
opacity: 1;
}
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useWorkspaces": true,
"command": {
"run": {
"start": "node"
}
},
"version": "0.0.0"
}