Skip to content

Commit

Permalink
Fixed eslint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
cgiesche committed Oct 8, 2023
1 parent c21d690 commit f84ab6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
8 changes: 0 additions & 8 deletions babel.config.js

This file was deleted.

5 changes: 4 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ import { fileURLToPath, URL } from 'node:url'

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
const path = require('path')
import path from 'path';

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);

// https://vitejs.dev/config/
export default defineConfig({
Expand Down

0 comments on commit f84ab6e

Please sign in to comment.