Skip to content

Commit

Permalink
Merge pull request #4361 from sanger/y24-309-blank-asset-barcodes
Browse files Browse the repository at this point in the history
Y24-309 - Added `chrome65` + `es2019` to vite build targets
  • Loading branch information
SHIV5T3R authored Sep 20, 2024
2 parents 0927cf2 + ffe6d49 commit eadfcba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/frontend/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module.exports = {
parserOptions: {
parser: "babel-eslint",
sourceType: "module",
ecmaVersion: 2018,
},
rules: {
"no-unused-vars": [
Expand Down
5 changes: 4 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ import { createVuePlugin } from "vite-plugin-vue2";
import legacy from "@vitejs/plugin-legacy";

export default defineConfig({
build: { emptyOutDir: true },
build: {
emptyOutDir: true,
target: ["chrome65", "es2019"],
},
plugins: [RubyPlugin(), createVuePlugin(), legacy({ targets: ["defaults"] })],
resolve: {
alias: {
Expand Down

0 comments on commit eadfcba

Please sign in to comment.