Fix production build
This commit is contained in:
@ -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;
|
||||
|
@ -1,4 +1,3 @@
|
||||
import { Project } from "./project";
|
||||
import { Task, TaskCategory, TaskID } from './task';
|
||||
import { Params, DefaultTaskCategories } from "./params";
|
||||
import { uuidV4 } from "../util/uuid";
|
||||
|
@ -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>
|
||||
|
@ -0,0 +1,3 @@
|
||||
.notFound {
|
||||
display: inherit;
|
||||
}
|
2
src/routes/notfound/style.css.d.ts
vendored
2
src/routes/notfound/style.css.d.ts
vendored
@ -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
3
src/style/index.css
Normal file
@ -0,0 +1,3 @@
|
||||
#app {
|
||||
display: inherit;
|
||||
}
|
Reference in New Issue
Block a user