feat: setup raw-loader for shaders

This commit is contained in:
2025-12-28 18:38:49 -03:00
parent 4ea26cb60c
commit 4b8af0955a
5 changed files with 908 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
declare module '*.vert' {
const content: string;
export default content;
}
declare module '*.frag' {
const content: string;
export default content;
}