Initial commit

This commit is contained in:
2020-01-03 23:19:30 +01:00
commit 39ccb78490
10 changed files with 4298 additions and 0 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: 'template-entity-row.js',
path: path.resolve(__dirname)
}
};