Kumi
932f8f98b1
This commit sets up webpack as the module bundler along with configurations for transforming ES6+ code using Babel and compiling SASS into CSS. It includes necessary dependencies such as `babel-loader`, `sass-loader`, `css-loader`, `style-loader`, and plugins like `mini-css-extract-plugin` to extract CSS into separate files. This setup facilitates the development of a modern web application by enabling the use of the latest JavaScript features and streamlined CSS pre-processing.
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Browser Error</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="./index.css"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div class="error-box">
|
|
<h1 class="mb-4">
|
|
FATAL ERROR: <span class="browser"></span> Detected
|
|
</h1>
|
|
<p class="mb-4">
|
|
Due to a bug in <span class="browser"></span>, this website is
|
|
temporarily inaccessible for anyone using the browser.
|
|
</p>
|
|
<p class="mb-4">
|
|
I apologize for the inaccessibility. As this site is now public I will
|
|
be revisiting this bug to try and find a work around. If I fail, I
|
|
believe there is a PR currently in review for
|
|
<span class="browser"></span> that attempts to fix the regression.
|
|
Whether or not that will fix the bug is unknown. Updates will be posted
|
|
here.
|
|
</p>
|
|
<p class="mb-4">
|
|
In the mean time if you want to access this site you will need to use a
|
|
different browser.
|
|
</p>
|
|
<p>Thank you - Kumi</p>
|
|
</div>
|
|
<script src="./lib/index.bundle.js"></script>
|
|
</body>
|
|
</html>
|