diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-02-20 18:40:02 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-03-01 20:56:19 +0100 |
commit | cab704f0cc98c6e2f6658cdb57fbabda9f448654 (patch) | |
tree | c7f845b3236d3174bfd1e3aba3ec12d318efdb17 /apps/files_sharing/webpack.common.js | |
parent | fd434da9590ea28f2feec0db02b37082eabfb876 (diff) | |
download | nextcloud-server-cab704f0cc98c6e2f6658cdb57fbabda9f448654.tar.gz nextcloud-server-cab704f0cc98c6e2f6658cdb57fbabda9f448654.zip |
Merge webpack into main one
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/files_sharing/webpack.common.js')
-rw-r--r-- | apps/files_sharing/webpack.common.js | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/apps/files_sharing/webpack.common.js b/apps/files_sharing/webpack.common.js deleted file mode 100644 index 9479459286f..00000000000 --- a/apps/files_sharing/webpack.common.js +++ /dev/null @@ -1,47 +0,0 @@ -const path = require('path'); -const { VueLoaderPlugin } = require('vue-loader'); - -module.exports = { - entry: path.join(__dirname, 'src', 'files_sharing.js'), - output: { - path: path.resolve(__dirname, 'js/dist'), - publicPath: '/js/dist/', - filename: 'files_sharing.js', - chunkFilename: 'files_sharing.[name].js' -}, - module: { - rules: [ - { - test: /\.css$/, - use: ['vue-style-loader', 'css-loader'] - }, - { - test: /\.scss$/, - use: ['vue-style-loader', 'css-loader', 'sass-loader'] - }, - { - test: /\.vue$/, - loader: 'vue-loader' - }, - { - test: /\.js$/, - loader: 'babel-loader', - exclude: /node_modules/ - }, - { - test: /\.(png|jpg|gif|svg)$/, - loader: 'file-loader', - options: { - name: '[name].[ext]?[hash]' - } - } - ] - }, - plugins: [new VueLoaderPlugin()], - resolve: { - alias: { - vue$: 'vue/dist/vue.runtime.esm.js', - }, - extensions: ['*', '.js', '.vue', '.json'] - } -}; |