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-17 10:49:47 +0300
committerJulius Härtl <jus@bitgrid.net>2019-05-22 12:48:06 +0300
commit738ab1a0a0996f0f2757a7b8d7fb7f2ba98ad7c3 (patch)
treee92c55efaa3fd46420e5ca073e76bd69cf74c797 /apps/files_sharing/webpack.js
parentc9fbd9212cb2a213f367b4b018b476741629b16a (diff)
Bump settings
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/webpack.js')
-rw-r--r--apps/files_sharing/webpack.js20
1 files changed, 2 insertions, 18 deletions
diff --git a/apps/files_sharing/webpack.js b/apps/files_sharing/webpack.js
index fb82797d804..f016341f5a7 100644
--- a/apps/files_sharing/webpack.js
+++ b/apps/files_sharing/webpack.js
@@ -31,28 +31,12 @@ module.exports = {
{
test: /\.js$/,
loader: 'babel-loader',
- exclude: /node_modules/,
- options: {
- plugins: ['@babel/plugin-syntax-dynamic-import', 'transform-es2015-arrow-functions']
- }
- },
- {
- test: /\.(png|jpg|gif|svg)$/,
- loader: 'file-loader',
- options: {
- name: '[name].[ext]?[hash]'
- }
+ exclude: /node_modules/
}
]
},
plugins: [new VueLoaderPlugin()],
resolve: {
- alias: {
- vue$: 'vue/dist/vue.runtime.esm.js',
- },
- extensions: ['*', '.js', '.vue', '.json'],
- modules: [
- path.join(__dirname, '../../node_modules')
- ]
+ extensions: ['*', '.js', '.vue', '.json']
},
};