fix: add custom style to better match farmOS color scheme
This commit is contained in:
parent
87b97f53b8
commit
768859b6b9
9 changed files with 2511 additions and 1 deletions
13
style/webpack.config.js
Normal file
13
style/webpack.config.js
Normal 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"],
|
||||
}]
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue