1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-08 05:47:07 +09:00

protos-web server

This commit is contained in:
requilence 2020-06-22 11:47:33 +03:00
parent 34b13baced
commit d5e424553a
No known key found for this signature in database
GPG key ID: F07A7D55A2684852
13 changed files with 149 additions and 2381 deletions

12
webpack.config.js Normal file
View file

@ -0,0 +1,12 @@
var path = require('path');
module.exports = {
mode: 'none',
output: {
path: path.resolve(__dirname, 'build/web/'),
filename: 'commands.pb.js'
},
optimization: {
minimize: false
},
};