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-01-30 19:06:01 +0300
committerMorris Jobke <hey@morrisjobke.de>2019-05-07 15:28:31 +0300
commit3cc8c9b76968bdabd3064b28c84790ec427fe1b7 (patch)
tree475b81b60723c5f5ed419230fcd99aa9510289ee /core/webpack.js
parent2cfe4fdd4ac0ca0b6588dbf489e495a83eb0f119 (diff)
Create a login bundle for login page scripts
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 bd40e301229..2a8e9b2f083 100644
--- a/core/webpack.js
+++ b/core/webpack.js
@@ -4,7 +4,8 @@ const webpack = require('webpack');
module.exports = [
{
entry: {
- main: path.join(__dirname, 'src/main.js'),
+ login: path.join(__dirname, 'src/login.js'),
+ main: path.join(__dirname, 'src/main.js')
},
output: {
filename: '[name].js',