mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-08 21:04:19 +00:00
16 lines
260 B
TypeScript
16 lines
260 B
TypeScript
import { mergeConfig } from 'vite';
|
|
import baseConfig from './vite.config.base';
|
|
|
|
export default mergeConfig(
|
|
{
|
|
mode: 'development',
|
|
server: {
|
|
open: false,
|
|
fs: {
|
|
strict: true,
|
|
},
|
|
},
|
|
plugins: [],
|
|
},
|
|
baseConfig
|
|
);
|