diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2019-05-17 09:49:47 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-05-22 11:48:06 +0200 |
commit | 738ab1a0a0996f0f2757a7b8d7fb7f2ba98ad7c3 (patch) | |
tree | e92c55efaa3fd46420e5ca073e76bd69cf74c797 /apps/files_sharing/webpack.js | |
parent | c9fbd9212cb2a213f367b4b018b476741629b16a (diff) | |
download | nextcloud-server-738ab1a0a0996f0f2757a7b8d7fb7f2ba98ad7c3.tar.gz nextcloud-server-738ab1a0a0996f0f2757a7b8d7fb7f2ba98ad7c3.zip |
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.js | 20 |
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'] }, }; |