forked from hexbear-collective/hexbear-frontend
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
import * as reactPlugin from 'vite-plugin-react';
|
|
import type { UserConfig } from 'vite';
|
|
|
|
const config: UserConfig = {
|
|
jsx: 'react',
|
|
plugins: [reactPlugin],
|
|
optimizeDeps: {
|
|
include: [
|
|
'emoji-mart',
|
|
'markdown-it-container',
|
|
'moment',
|
|
'markdown-it-emoji',
|
|
'markdown-it-emoji/light',
|
|
'lodash.isequal',
|
|
'moment/locale/es',
|
|
'moment/locale/el',
|
|
'moment/locale/eu',
|
|
'moment/locale/eo',
|
|
'moment/locale/de',
|
|
'moment/locale/zh-cn',
|
|
'moment/locale/fr',
|
|
'moment/locale/sv',
|
|
'moment/locale/ru',
|
|
'moment/locale/nl',
|
|
'moment/locale/it',
|
|
'moment/locale/fi',
|
|
'moment/locale/ca',
|
|
'moment/locale/fa',
|
|
'moment/locale/pl',
|
|
'moment/locale/pt-br',
|
|
'moment/locale/ja',
|
|
'moment/locale/ka',
|
|
'moment/locale/hi',
|
|
'moment/locale/gl',
|
|
'moment/locale/tr',
|
|
'moment/locale/hu',
|
|
'moment/locale/uk',
|
|
'moment/locale/sq',
|
|
'moment/locale/km',
|
|
'moment/locale/ga',
|
|
'moment/locale/sr',
|
|
'object-assign',
|
|
],
|
|
},
|
|
};
|
|
|
|
export default config;
|