10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: './src/main.js',
|
|
mode: 'production',
|
|
output: {
|
|
filename: 'more-info-card.js',
|
|
path: path.resolve(__dirname)
|
|
}
|
|
}; |