Total overhaul!

This commit is contained in:
2019-11-08 00:38:06 +01:00
parent 8057bdfd51
commit 05a3d0a9c5
12 changed files with 4539 additions and 325 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: 'auto-entities.js',
path: path.resolve(__dirname)
}
}