Skip to content

Commit

Permalink
Add hack to fix email processing
Browse files Browse the repository at this point in the history
  • Loading branch information
backspace committed Jun 29, 2024
1 parent 5d73810 commit 4149f72
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
23 changes: 23 additions & 0 deletions registrations/assets/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions registrations/assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-cubic-bezier-bounding-box": "^1.0.2",
"sass-loader": "^8.0.2",
"string-replace-loader": "^3.1.0",
"terser-webpack-plugin": "^2.3.2",
"three": "^0.77.1",
"webpack": "^4.41.5",
Expand Down
8 changes: 8 additions & 0 deletions registrations/assets/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ module.exports = (env, options) => {
use: [
MiniCssExtractPlugin.loader,
"css-loader",
{
loader: "string-replace-loader",
options: {
search: '@charset "UTF-8";',
replace: "",
flags: "g",
},
},
{
loader: "sass-loader",
options: {
Expand Down

0 comments on commit 4149f72

Please sign in to comment.