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:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-05-24 15:08:39 +0300
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-05-29 16:19:18 +0300
commitb53a9130a60962fd2964d37b1ffafe1f3eaff5df (patch)
tree063c28661e65f9c5dec9b7e00c7d4ecea6e207d2 /apps/systemtags/webpack.js
parent21f9487939ecc0e37ca1dd5cecdde258cd55d89a (diff)
Unify webpack config
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/systemtags/webpack.js')
-rw-r--r--apps/systemtags/webpack.js31
1 files changed, 2 insertions, 29 deletions
diff --git a/apps/systemtags/webpack.js b/apps/systemtags/webpack.js
index 27f1b903258..b4da5026997 100644
--- a/apps/systemtags/webpack.js
+++ b/apps/systemtags/webpack.js
@@ -1,4 +1,4 @@
-const path = require('path');
+const path = require('path')
module.exports = {
entry: path.join(__dirname, 'src', 'systemtags.js'),
@@ -6,32 +6,5 @@ module.exports = {
path: path.resolve(__dirname, './js'),
publicPath: '/js/',
filename: 'systemtags.js'
- },
- module: {
- rules: [
- {
- test: /\.css$/,
- use: ['style-loader', 'css-loader']
- },
- {
- test: /\.scss$/,
- use: ['style-loader', 'css-loader', 'sass-loader']
- },
- {
- test: /\.js$/,
- loader: 'babel-loader',
- exclude: /node_modules/
- },
- {
- test: /\.(png|jpg|gif|svg)$/,
- loader: 'file-loader',
- options: {
- name: '[name].[ext]?[hash]'
- }
- }
- ]
- },
- resolve: {
- extensions: ['*', '.js']
}
-};
+}