Skip to content

Commit

Permalink
more tweaks to vite config
Browse files Browse the repository at this point in the history
  • Loading branch information
Irev-Dev committed Jul 20, 2023
1 parent 802619d commit 3697705
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react'
import viteTsconfigPaths from 'vite-tsconfig-paths'
import eslint from 'vite-plugin-eslint'

export default defineConfig({
server: {
open: true,
port: 3000,
},
build: {
outDir: 'build',
},
export default {
server: {
open: true,
port: 3000,
},
build: {
outDir: 'build',
},
plugins: [
react(),
viteTsconfigPaths(),
eslint(),
],
test: {
globals: true,
}
})
}

0 comments on commit 3697705

Please sign in to comment.