Webpack configuration, module federation, loaders, plugins, and optimization.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill webpack --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Webpack?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-webpack-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: webpack
description: Webpack configuration, module federation, loaders, plugins, and optimization.
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
graph:
domains: [domain:web-development]
specializations: [specialization:web-development]
skillAreas: [skill-area:asset-pipeline, skill-area:web-performance]
roles: [role:frontend-engineer]
topics: [topic:code-splitting, topic:tree-shaking]
---
# Webpack Skill
Expert assistance for Webpack configuration and optimization.
## Capabilities
- Configure webpack for production
- Set up Module Federation
- Create custom loaders/plugins
- Optimize bundle size
- Configure code splitting
## Configuration
```javascript
const { ModuleFederationPlugin } = require('webpack').container;
module.exports = {
mode: 'production',
entry: './src/index.js',
output: {
filename: '[name].[contenthash].js',
chunkFilename: '[name].[contenthash].chunk.js',
},
optimization: {
splitChunks: {
chunks: 'all',
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name: 'vendors',
},
},
},
},
plugins: [
new ModuleFederationPlugin({
name: 'app',
remotes: { shared: 'shared@http://localhost:3001/remoteEntry.js' },
}),
],
};
```
## Target Processes
- build-optimization
- micro-frontend-architecture
- legacy-migration
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!