mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 13:09:07 +01:00
15 lines
253 B
TypeScript
15 lines
253 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import eslint from 'vite-plugin-eslint';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
eslint({
|
|
cache: true,
|
|
failOnError: true,
|
|
failOnWarning: false,
|
|
}),
|
|
],
|
|
})
|