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:
authorGeorg Ehrke <developer@georgehrke.com>2020-06-02 13:48:37 +0300
committerGeorg Ehrke <developer@georgehrke.com>2020-07-31 17:45:27 +0300
commit0fad921840eb801492522af6ef795231163cff20 (patch)
treeddab0d1567d81eeb8d956ec98196180ad296cabd /apps/user_status/webpack.js
parentfce6df06e2bd1d68ee5614621ae7f92c6f7fa53d (diff)
Add user-status app
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'apps/user_status/webpack.js')
-rw-r--r--apps/user_status/webpack.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/user_status/webpack.js b/apps/user_status/webpack.js
new file mode 100644
index 00000000000..b3a9b4f312d
--- /dev/null
+++ b/apps/user_status/webpack.js
@@ -0,0 +1,18 @@
+const path = require('path')
+
+module.exports = {
+ entry: {
+ 'user-status-menu': path.join(__dirname, 'src', 'main-user-status-menu')
+ },
+ output: {
+ path: path.resolve(__dirname, './js'),
+ publicPath: '/js/',
+ filename: '[name].js?v=[chunkhash]',
+ jsonpFunction: 'webpackJsonpUserStatus'
+ },
+ optimization: {
+ splitChunks: {
+ automaticNameDelimiter: '-',
+ }
+ }
+}