fix: add custom style to better match farmOS color scheme

This commit is contained in:
Lance Edgar 2026-02-07 09:48:26 -06:00
parent 87b97f53b8
commit 768859b6b9
9 changed files with 2511 additions and 1 deletions

13
style/webpack.config.js Normal file
View file

@ -0,0 +1,13 @@
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = {
plugins: [new MiniCssExtractPlugin({
filename: "css/wuttafarm-buefy.css",
})],
module: {
rules: [{
test: /\.scss$/,
use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"],
}]
},
};