Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
aotearoan committed May 1, 2023
1 parent 4089545 commit 555495b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
</neon-grid>
<neon-footer class="app-footer">
<span>
{{ versionString !== "0" ? versionString : "" }} &copy; copyright aotearoan
{{ versionString !== '0' ? versionString : '' }} &copy; copyright aotearoan
{{ new Date().getFullYear() }}
</span>
</neon-footer>
Expand Down
2 changes: 1 addition & 1 deletion vite.config.app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { dependencies } from './package.json';
import EnvironmentPlugin from 'vite-plugin-environment';

const renderChunks = (deps: Record<string, string>) => {
let chunks: Record<string, any> = {};
const chunks: Record<string, Array<string>> = {};
Object.keys(deps).forEach((key) => {
if (['vue', 'vue-router'].includes(key)) return;
chunks[key] = [key];
Expand Down

0 comments on commit 555495b

Please sign in to comment.