From 3e7fdfb6c8a50c59ac933f701526ad1815dded92 Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Tue, 9 Dec 2025 22:16:48 -0600 Subject: refactor codebase. Reorganize file structure. Replace webpack for vite. Setup setuptools for application. Move closer to distributable app --- static/webpack.config.js | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 static/webpack.config.js (limited to 'static/webpack.config.js') 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", -} -- cgit v1.2.3