diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-05-16 16:40:02 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-05-16 16:45:00 +0200 |
commit | 0cfcccee29652c83e6c898bc487fe09bb54e0c22 (patch) | |
tree | eb4aaf2473f1801017a0188ae1cd7d536d68966f /core/webpack.js | |
parent | 633a1981428a1b94626ea6447c9ee305162c01dd (diff) | |
download | nextcloud-server-0cfcccee29652c83e6c898bc487fe09bb54e0c22.tar.gz nextcloud-server-0cfcccee29652c83e6c898bc487fe09bb54e0c22.zip |
Migrate the maintenance script to a modern module and bundle
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/webpack.js')
-rw-r--r-- | core/webpack.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/webpack.js b/core/webpack.js index 2a8e9b2f083..c40b35c9db0 100644 --- a/core/webpack.js +++ b/core/webpack.js @@ -5,7 +5,8 @@ module.exports = [ { entry: { login: path.join(__dirname, 'src/login.js'), - main: path.join(__dirname, 'src/main.js') + main: path.join(__dirname, 'src/main.js'), + maintenance: path.join(__dirname, 'src/maintenance.js'), }, output: { filename: '[name].js', |