fix(static): fix bootstrap usage

This commit is contained in:
2026-07-10 14:49:35 +03:00
parent 2d54e0afd0
commit b1bf51c606
4 changed files with 7 additions and 6 deletions

View File

@@ -1,7 +1,3 @@
@import "bootstrap/scss/mixins/banner";
@include bsBanner("");
// scss-docs-start import-stack // scss-docs-start import-stack
// Configuration // Configuration
@import "bootstrap/scss/functions"; @import "bootstrap/scss/functions";

View File

@@ -1,4 +1,5 @@
@import "../lib/bootstrap"; @import "bootstrap/scss/variables";
@import "bootstrap/scss/mixins";
.table.table-compact { .table.table-compact {
td { td {

View File

@@ -1,4 +1,5 @@
@import "../lib/bootstrap"; @import "bootstrap/scss/variables";
@import "bootstrap/scss/mixins";
$default-space: 2; $default-space: 2;

View File

@@ -72,6 +72,9 @@ const config: webpack.Configuration = {
maxEntrypointSize: 512000, maxEntrypointSize: 512000,
maxAssetSize: 512000, maxAssetSize: 512000,
}, },
cache: {
type: "filesystem",
},
}; };
export default config; export default config;