mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-10 05:42:50 +00:00
23 lines
453 B
TypeScript
23 lines
453 B
TypeScript
import { mergeConfig } from 'vite';
|
|
import eslint from 'vite-plugin-eslint';
|
|
import baseConfig from './vite.config.base';
|
|
|
|
export default mergeConfig(
|
|
{
|
|
mode: 'development',
|
|
server: {
|
|
open: true,
|
|
fs: {
|
|
strict: true,
|
|
},
|
|
},
|
|
plugins: [
|
|
eslint({
|
|
cache: false,
|
|
include: ['src/**/*.ts', 'src/**/*.tsx', 'src/**/*.vue'],
|
|
exclude: ['node_modules'],
|
|
}),
|
|
],
|
|
},
|
|
baseConfig
|
|
);
|