Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-16 17:40:02 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-16 17:45:00 +0300
commit0cfcccee29652c83e6c898bc487fe09bb54e0c22 (patch)
treeeb4aaf2473f1801017a0188ae1cd7d536d68966f /core/webpack.js
parent633a1981428a1b94626ea6447c9ee305162c01dd (diff)
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.js3
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',