use wavesurefer and some styling

This commit is contained in:
michalcourson
2026-02-06 19:46:33 -05:00
parent 17bace5eaf
commit c292350b25
10 changed files with 883 additions and 261 deletions

View File

@ -51,12 +51,32 @@ const configuration: webpack.Configuration = {
},
},
'sass-loader',
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [require('@tailwindcss/postcss')],
},
},
},
],
include: /\.module\.s?(c|a)ss$/,
},
{
test: /\.s?(a|c)ss$/,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'],
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'sass-loader',
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [require('@tailwindcss/postcss')],
},
},
},
],
exclude: /\.module\.s?(c|a)ss$/,
},
// Fonts