Files
logseq/deps/persist-db/webpack.config.js
Andelf 7cf2d5d387 chore: DB version for browser support (#10016)
- impl storage
- still not working: refreshing, init code
2023-08-15 21:07:31 +08:00

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',
};