diff options
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'] - } -}; |