Fix production build

This commit is contained in:
2020-04-20 12:24:17 +02:00
parent 0a98e32a83
commit 8698dec2bf
16 changed files with 588 additions and 1190 deletions

View File

@ -1,5 +1,7 @@
import "./style/index.scss";
import "bulma/bulma.sass";
import "./style/index.css";
import "bulma/css/bulma.css";
import App from "./components/app.tsx";
export default App;

View File

@ -1,4 +1,3 @@
import { Project } from "./project";
import { Task, TaskCategory, TaskID } from './task';
import { Params, DefaultTaskCategories } from "./params";
import { uuidV4 } from "../util/uuid";

View File

@ -4,7 +4,7 @@ import * as style from "./style.css";
const Notfound: FunctionalComponent = () => {
return (
<div class={style.notfound}>
<div class={style.notFound}>
<h1>Error 404</h1>
<p>That page doesn't exist.</p>
<Link href="/"><h4>Back to Home</h4></Link>

View File

@ -0,0 +1,3 @@
.notFound {
display: inherit;
}

View File

@ -1,2 +1,2 @@
// This file is automatically generated from your CSS. Any edits will be overwritten.
export {};
export const notFound: string;

3
src/style/index.css Normal file
View File

@ -0,0 +1,3 @@
#app {
display: inherit;
}

View File