jormungandr-bite/packages/frontend/vite.config.ts

15 lines
253 B
TypeScript
Raw Normal View History

2023-12-08 12:22:16 -07:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
2023-12-11 11:51:58 -07:00
import eslint from 'vite-plugin-eslint';
2023-12-08 12:22:16 -07:00
export default defineConfig({
2023-12-11 11:51:58 -07:00
plugins: [
vue(),
eslint({
cache: true,
failOnError: true,
failOnWarning: false,
}),
],
2023-12-08 12:22:16 -07:00
})