Skip to content

Commit

Permalink
Fix: Removed Sentry to allow build to run properly
Browse files Browse the repository at this point in the history
  • Loading branch information
mtapia01 committed Feb 4, 2025
1 parent 908dbb9 commit 2213405
Show file tree
Hide file tree
Showing 23 changed files with 4,288 additions and 33 deletions.
Binary file added assets/MaterialIcons-Regular-BjXOXp5c.eot
Binary file not shown.
Binary file added assets/MaterialIcons-Regular-DEUTIz1o.ttf
Binary file not shown.
Binary file added assets/MaterialIcons-Regular-DOtZ65Va.woff2
Binary file not shown.
Binary file added assets/MaterialIcons-Regular-FsbMSDLx.woff
Binary file not shown.
3 changes: 3 additions & 0 deletions assets/ModelRun-Bjr3UnDW.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/ModelRun-BpM2M_nv.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added assets/WA_36s_Demo-BGDVAm1o.mp4
Binary file not shown.
Binary file added assets/delta_ag_production-DlZxEUTR.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4,254 changes: 4,254 additions & 0 deletions assets/index-C6_7wrm8.js

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions assets/index-DstzRuJT.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/leaflet-src-BUliZnM0.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions assets/leaflet-src.esm-HdBnhJze.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/marker-icon-2x-D4k_ikNW.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/marker-icon-C2eJqgqv.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/marker-shadow-DU6CIJ0p.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added assets/napa_background_2-BOkLhGar.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/palouse_winter_wheat-XoWY9zqs.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/pmp_flow-B4_WPMl6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 0 additions & 12 deletions dist/index.html

This file was deleted.

Binary file added favicon.ico
Binary file not shown.
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
<title>OpenAg</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" rel="stylesheet">
<!-- <script type="module" crossorigin src="/assets/index.js"></script>-->
<!-- <link rel="stylesheet" crossorigin href="/assets/index.css">-->
</head>
<body>
<noscript>
Expand Down
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const ModelRun = () => import(/* webpackPrefetch: true */ "./components/ModelRun
import 'material-design-icons-iconfont/dist/material-design-icons.css' // need this for material design icons
import 'leaflet/dist/leaflet.css';
import {createVuetify} from 'vuetify';
import './sentry.js';
// import './sentry.js';
// import './assets/global.styl'
// initialize a11y features
// Now init the application itself
Expand Down
30 changes: 10 additions & 20 deletions vite.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
// vite.config.js

// import vue from '@vitejs/plugin-vue2';
import {defineConfig} from "vite";
import vue from '@vitejs/plugin-vue';
// import vuetify from "./src/plugins/vuetify.js";
import vuetify from 'vite-plugin-vuetify';


Expand All @@ -19,23 +15,17 @@ export default defineConfig({
}
},
plugins: [
vue({
template: {

}
}),
vuetify()
vue(),
vuetify({autoImport: true})
],
build: {
rollupOptions: {
// output: {
// manualChunks: {
// plotly: ['plotly.js'],
// vue_plotly: ['@wellcaffeinated/vue-plotly'],
// leaflet: ['vue2-leaflet'],
// choropleth: ['vue-choropleth'],
// }
// }
}
rollupOptions: {
// external: ['vue'],
output: {
globals: {
vue: 'Vue'
}
}
}
}
})

0 comments on commit 2213405

Please sign in to comment.