diff options
Diffstat (limited to 'apps/files_trashbin/webpack.js')
-rw-r--r-- | apps/files_trashbin/webpack.js | 31 |
1 files changed, 2 insertions, 29 deletions
diff --git a/apps/files_trashbin/webpack.js b/apps/files_trashbin/webpack.js index 2261fb08d36..fbf378933ba 100644 --- a/apps/files_trashbin/webpack.js +++ b/apps/files_trashbin/webpack.js @@ -1,4 +1,4 @@ -const path = require('path'); +const path = require('path') module.exports = { entry: path.join(__dirname, 'src', 'files_trashbin.js'), @@ -6,32 +6,5 @@ module.exports = { path: path.resolve(__dirname, './js'), publicPath: '/js/', filename: 'files_trashbin.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'] } -}; +} |