1 Star 0 Fork 30

墨菲 / NaiveUI

forked from Gitee 极速下载 / NaiveUI 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.js 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
const path = require('path')
const { babel } = require('@rollup/plugin-babel')
const createDemoPlugin = require('./build/vite-plugin-demo')
/**
* @type {import('vite').UserConfig}
*/
module.exports = {
root: __dirname,
plugins: createDemoPlugin(),
resolve: {
// In production site build, we want to import naive-ui from node_modules
alias:
process.env.NODE_ENV !== 'production'
? [
{
find: 'naive-ui',
replacement: path.resolve(__dirname, './src')
}
]
: undefined
},
define: {
'process.env.NODE_ENV': `'${process.env.NODE_ENV}'`,
'process.env.TUSIMPLE': !!process.env.TUSIMPLE,
__DEV__: process.env.NODE_ENV !== 'production'
},
optimizeDeps: {
include: [
'@css-render/plugin-bem',
'async-validator',
'css-render',
'date-fns',
'evtd',
'highlight.js',
'lodash-es',
'seemly',
'treemate',
'vdirs',
'vooks',
'vue',
'vue-router',
'vueuc'
],
exclude: ['__INDEX__']
},
build: {
outDir: 'site',
rollupOptions: {
plugins: [
babel({
babelHelpers: 'bundled'
})
]
}
},
esbuild: {
jsxFactory: 'h',
jsxFragment: 'Fragment'
}
}
TypeScript
1
https://gitee.com/lamoure/NaiveUI.git
git@gitee.com:lamoure/NaiveUI.git
lamoure
NaiveUI
NaiveUI
dependabot/npm_and_yarn/eslint-config-standard-with-typescript-20.0.0

搜索帮助

53164aa7 5694891 3bd8fe86 5694891