1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-08 05:47:07 +09:00
anytype-heart/webpack.config.js
2020-06-22 11:47:33 +03:00

12 lines
196 B
JavaScript

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