2023-08-09 18:39:45 +00:00

11 lines
182 B
JavaScript
Executable File

const path = require('path');
module.exports = {
entry: './src/main.js',
mode: 'production',
output: {
filename: 'card-tools.js',
path: path.resolve(__dirname)
}
};