Skip to content

Commit

Permalink
Merge branch 'main' into adi/fix-build
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapawar1 authored Jan 17, 2025
2 parents 47e50de + f2a39ae commit 96ebee9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions global.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare module '*.md';
10 changes: 10 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports = {
module: {
rules: [
{
test: /\.md$/i,
use: 'raw-loader',
},
],
},
};

0 comments on commit 96ebee9

Please sign in to comment.