summaryrefslogtreecommitdiffstats
path: root/config/webpack/rules/file.js
diff options
context:
space:
mode:
Diffstat (limited to 'config/webpack/rules/file.js')
-rw-r--r--config/webpack/rules/file.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/config/webpack/rules/file.js b/config/webpack/rules/file.js
deleted file mode 100644
index f2fb5878010..00000000000
--- a/config/webpack/rules/file.js
+++ /dev/null
@@ -1,20 +0,0 @@
-const { join } = require('path');
-const { settings } = require('../configuration');
-
-module.exports = {
- test: new RegExp(`(${settings.static_assets_extensions.join('|')})$`, 'i'),
- use: [
- {
- loader: 'file-loader',
- options: {
- name(file) {
- if (file.includes(settings.source_path)) {
- return 'media/[path][name]-[hash].[ext]';
- }
- return 'media/[folder]/[name]-[hash:8].[ext]';
- },
- context: join(settings.source_path),
- },
- },
- ],
-};