Skip to content

Commit

Permalink
improve support for older browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
adbenitez committed Sep 3, 2023
1 parent cbaf25a commit 0018b6c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions frontend/.browserslistrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Chrome >=79
ChromeAndroid >=79
ChromeAndroid >=37
Firefox >=70
Edge >=79
Safari >=14
iOS >=14
iOS >=11
2 changes: 1 addition & 1 deletion frontend/public/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.0
2.4.1
6 changes: 4 additions & 2 deletions frontend/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { defineConfig } from "vite";
import zipPack from "vite-plugin-zip-pack";
import legacy from '@vitejs/plugin-legacy'
import preact from "@preact/preset-vite";
import zipPack from "vite-plugin-zip-pack";
import { defineConfig } from "vite";

import { readFileSync, mkdirSync, copyFileSync, existsSync } from "node:fs";

Expand Down Expand Up @@ -66,6 +67,7 @@ function eruda(debug = undefined) {
export default defineConfig({
plugins: [
preact(),
legacy({renderModernChunks: false}),
// @ts-ignore
eruda(),
embedVersion(),
Expand Down

0 comments on commit 0018b6c

Please sign in to comment.