mirror of
https://github.com/anyproto/anytype-heart.git
synced 2025-06-08 05:47:07 +09:00
15 lines
265 B
JavaScript
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
|
|
},
|
|
};
|