mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
12 lines
No EOL
326 B
JavaScript
12 lines
No EOL
326 B
JavaScript
const { merge } = require('webpack-merge')
|
|
const path = require('path')
|
|
const webpackConfig = require('@nextcloud/webpack-vue-config')
|
|
|
|
const config = {
|
|
entry: {
|
|
tab: path.resolve(path.join('src', 'tab.js')),
|
|
settings: path.resolve(path.join('src', 'settings.js')),
|
|
},
|
|
}
|
|
|
|
module.exports = merge(config, webpackConfig) |