Skip to content
Snippets Groups Projects
Commit 570081ba authored by Cedric Greiten's avatar Cedric Greiten :speech_balloon:
Browse files

fix bootstrap import error

parent a84e69b8
No related branches found
No related tags found
1 merge request!116Stop making the Compiler Cry
Pipeline #285773 passed
// If we don't do this, importing bootstrap.css throws a linter-error
declare module "*.css" {
const content: string;
export default content;
}
...@@ -14,7 +14,6 @@ import { ...@@ -14,7 +14,6 @@ import {
renderTranscriptPageHtml, renderTranscriptPageHtml,
} from "./lib/rendering"; } from "./lib/rendering";
import { generateAttendancePage } from "./lib/attendance"; import { generateAttendancePage } from "./lib/attendance";
// @ts-ignore
import bootstrap from "bootstrap/dist/css/bootstrap.min.css"; import bootstrap from "bootstrap/dist/css/bootstrap.min.css";
async function main() { async function main() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment