20 lines
468 B
JavaScript
20 lines
468 B
JavaScript
import { fileURLToPath, URL } from 'node:url';
|
|
import { defineConfig } from 'vite';
|
|
import vue from '@vitejs/plugin-vue';
|
|
import eslint from '@rollup/plugin-eslint';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(() => ({
|
|
plugins: [
|
|
vue(),
|
|
eslint({
|
|
include: ['**/*.js', '**/*.vue'],
|
|
}),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
},
|
|
},
|
|
}));
|