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

github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-03-31 18:44:47 +0300
committerJoas Schilling <coding@schilljs.com>2021-03-31 20:16:39 +0300
commit4301242b85145643657d399c1606ab4af6b1b8e9 (patch)
tree9b95e9cb74b33ff34298eb3aadda3acfdefbacbf /webpack.js
parent0703c5a0690c8ef3b21a0a64ed36a26c51c8a285 (diff)
Move admin settings to Vue
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'webpack.js')
-rw-r--r--webpack.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/webpack.js b/webpack.js
new file mode 100644
index 0000000..49d97a5
--- /dev/null
+++ b/webpack.js
@@ -0,0 +1,12 @@
+const path = require('path')
+const { merge } = require('webpack-merge')
+const webpackConfig = require('@nextcloud/webpack-vue-config')
+
+webpackConfig.entry = {}
+const config = {
+ entry: {
+ settings: path.join(__dirname, 'src', 'settings'),
+ },
+}
+
+module.exports = merge(config, webpackConfig)