chore(deps): update to excalidraw 0.18.0

This commit is contained in:
Elian Doran
2025-03-11 22:59:16 +02:00
parent 39f3cb47fa
commit c2cb48a25c
4 changed files with 2124 additions and 30 deletions

View File

@@ -42,6 +42,32 @@ const config: Configuration = {
],
exclude: /node_modules/
},
{
test: /\.m?js$/,
resolve: {
fullySpecified: false
}
},
{
// bootstrap CSS related configuration
test: /\.(css)$/,
use: [
{
loader: miniCssExtractPlugin.loader
},
{
loader: "css-loader"
},
{
loader: "postcss-loader",
options: {
postcssOptions: {
plugins: [autoprefixer]
}
}
}
]
},
{
// bootstrap CSS related configuration
test: /\.(scss)$/,