diff --git a/CODEOWNERS b/CODEOWNERS deleted file mode 100644 index d36f3a48..00000000 --- a/CODEOWNERS +++ /dev/null @@ -1,2 +0,0 @@ -* @t1protocol/engineering-t1 - diff --git a/docusaurus.config.js b/docusaurus.config.js index ba88fcda..fcfc1d3e 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -148,5 +148,19 @@ module.exports = { crossorigin: 'anonymous', }, ], - plugins: [], + plugins: [ + function disableCSSMinimization(_context, _options) { + return { + name: 'disable-css-minimization', + configureWebpack(config, isServer) { + if (!isServer) { + // Disable CSS minimization to avoid broken styles + config.optimization.minimizer = config.optimization.minimizer.filter( + (minimizer) => minimizer.constructor.name !== 'CssMinimizerPlugin' + ) + } + }, + } + }, + ], }