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 16:22:28 +03:00

15 lines
265 B
JavaScript

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