first commit

This commit is contained in:
vanalmsick 2025-09-27 18:19:06 +01:00
commit e7f627801f
152 changed files with 35352 additions and 0 deletions

View file

@ -0,0 +1,21 @@
const Critters = require('critters-webpack-plugin');
module.exports = {
webpack: {
configure: (webpackConfig) => {
webpackConfig.devtool = 'source-map'; // always enable source maps
return webpackConfig;
},
plugins: {
add: [
new Critters({
// Critters options
preload: 'swap', // or 'body'
preloadFonts: true,
fonts: true,
noscriptFallback: true
})
]
}
}
};