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