iceshrimp-161sh/packages/frontend/vite.config.ts

15 lines
253 B
TypeScript
Raw Normal View History

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