Complete overhaul

This commit is contained in:
2019-11-11 16:48:36 +01:00
parent 83e2b16af0
commit 8eeea0e700
10 changed files with 4663 additions and 373 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: 'layout-card.js',
path: path.resolve(__dirname)
}
};