server/webpack.common.js
Roeland Jago Douma 58ecc7d000
Move files_trashbin to webpack
Combine the 2 js files and the scss. This saves compiling the scss on
the go. And going via Nextcloud storage to obtain it.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2019-02-13 09:46:29 +01:00

5 lines
211 B
JavaScript

const core = require('./core/webpack');
const files_trashbin = require('./apps/files_trashbin/webpack')
const oauth2 = require('./apps/oauth2/webpack')
module.exports = [].concat(core, files_trashbin, oauth2);