feat: many design changes
All checks were successful
Build / build (push) Successful in 6m33s
Build / deploy-stage (push) Successful in 2m55s
Build / switch-stage (push) Successful in 2m0s

This commit is contained in:
2024-12-14 00:03:09 +01:00
parent 9e4a2e90ec
commit 16344b6994
35 changed files with 2692 additions and 110 deletions

28
webpack.config.js Normal file
View File

@@ -0,0 +1,28 @@
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
mode: 'production',
entry: './packages/base/Resources/Public/Scss/main.scss',
output: {
path: path.resolve(__dirname, 'packages/base/Resources/Public/Css'),
filename: 'main.js' // JS not needed, but required by Webpack. The CSS will be extracted.
},
module: {
rules: [
{
test: /\.scss$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader'
]
}
]
},
plugins: [
new MiniCssExtractPlugin({
filename: 'main.css'
})
]
};