First draft of working NBN theme for mediawiki

This commit is contained in:
D. Rimron-Soutter
2025-12-29 18:05:44 +00:00
parent 082cc79b33
commit 8b59db8825
8 changed files with 78 additions and 64 deletions

View File

@@ -1,7 +1,18 @@
const mix = require('laravel-mix');
mix.webpackConfig({
externals: { 'jquery': 'jQuery' }
module: {
rules: [
{
test: /\.(woff|woff2|eot|ttf|otf)$/, // Match all font file types
type: 'asset/resource', // Handle font files as assets
generator: {
filename: 'fonts/[name][ext]', // Output to public/fonts/
},
},
],
},
externals: { 'jquery': 'jQuery' }
});
/*