Skip to content

Commit

Permalink
fix(vite.config.js): removed exlint as a plugin in vite.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
timDeHof committed Oct 12, 2023
1 parent 3fe648d commit 025b62e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vite.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import eslint from "vite-plugin-eslint";

import path from "path";

// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), eslint()],
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
Expand Down

0 comments on commit 025b62e

Please sign in to comment.