Version 2.0!

This commit is contained in:
2019-11-05 00:28:13 +01:00
parent bff8a650bc
commit fd2e449001
21 changed files with 4875 additions and 619 deletions

10
webpack.config.js Normal file
View File

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