summaryrefslogtreecommitdiff
path: root/static/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/webpack.config.js')
-rw-r--r--static/webpack.config.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/static/webpack.config.js b/static/webpack.config.js
deleted file mode 100644
index 6204e46..0000000
--- a/static/webpack.config.js
+++ /dev/null
@@ -1,27 +0,0 @@
-const path = require("path")
-
-module.exports = {
- module: {
- rules: [
- {
- test: /\.css$/i,
- use: [
- "style-loader",
- "css-loader",
- {
- loader: "postcss-loader",
- options: { postcssOptions: { plugins: [ require("@tailwindcss/postcss") ] } },
- },
- ],
- },
- {
- test: /\.svg$/,
- loader: "svg-sprite-loader",
- options: {
- symbolId: filePath => "sprite-" + path.basename(filePath).replace(/_[0-9]+dp_.*/, ""),
- },
- },
- ],
- },
- mode: "development",
-}