mirror of
https://github.com/logseq/logseq.git
synced 2026-05-03 18:36:43 +00:00
14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: './src/index.js',
|
|
target: ['webworker', 'es6'],
|
|
mode: 'production',
|
|
output: {
|
|
filename: 'persist-db-worker.js',
|
|
path: path.resolve(__dirname, 'dist'),
|
|
clean: true,
|
|
},
|
|
devtool: 'source-map',
|
|
};
|