mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-09 21:34:51 +00:00
24 lines
453 B
TypeScript
24 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
|
||
|
);
|