UNPKG

fe-core-cli

Version:

All-in-one scaffolding, cli integrated with Vue3 ecological chain, cli of H5 page, mock template cli of Node

19 lines (17 loc) 348 B
import { defineConfig } from 'vite' import VueJsx from '@vitejs/plugin-vue-jsx' import WindiCSS from 'vite-plugin-windicss' export default defineConfig({ plugins: [ VueJsx(), WindiCSS({ preflight: false }) ], ssr: { noExternal: ['@{{npmScope}}/utils', '@{{npmScope}}/components'] }, server: { port: 3100 } })