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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-10-18 13:02:17 +0300
committerJoas Schilling <coding@schilljs.com>2019-10-18 14:14:09 +0300
commit42eb6249b508f2a470d5b68cf4a1893a90c261d6 (patch)
treeec0ac8743616b4fd8a519b4b275cd3c3d169c191 /webpack.common.js
parent690c54d2dba8d8db841c9cd4d4870b05c8ed14eb (diff)
Move GeneralSettings to src/
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack.common.js b/webpack.common.js
index b890bee7d..66382d121 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -5,7 +5,8 @@ const StyleLintPlugin = require('stylelint-webpack-plugin')
module.exports = {
entry: {
'admin/allowed-groups': path.join(__dirname, 'src', 'AllowedGroupsSettings.js'),
- "admin/commands": path.join(__dirname, 'src', 'CommandsSettings.js'),
+ 'admin/commands': path.join(__dirname, 'src', 'CommandsSettings.js'),
+ 'admin/general-settings': path.join(__dirname, 'src', 'GeneralSettings.js'),
'talk': path.join(__dirname, 'src', 'main.js')
},
output: {