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