1 Star 3 Fork 0

前端代码工具库/page-spy-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.mjs 925 Bytes
一键复制 编辑 原始数据 按行查看 历史
Blucas 提交于 2023-12-26 16:58 . feat: support sub-path deployment (#106)
import { defineConfig } from 'vite';
import path from 'path';
import react from '@vitejs/plugin-react';
import svgr from 'vite-plugin-svgr';
import mdx from '@mdx-js/rollup';
export default ({ mode, command }) => {
const buildDoc = mode === 'doc';
const isProd = command === 'build';
return defineConfig({
base: './',
build: {
target: ['chrome100'],
sourcemap: isProd ? 'hidden' : true,
outDir: buildDoc ? 'docs-dist' : 'dist',
},
resolve: {
alias: [{ find: '@', replacement: path.join(__dirname, './src') }],
},
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
modifyVars: {
hack: `true; @import "${process.cwd()}/src/assets/style/variable.less";`,
},
},
},
},
plugins: [
{
enforce: 'pre',
...mdx(),
},
react(),
svgr(),
],
});
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tomxiang/page-spy-web.git
git@gitee.com:tomxiang/page-spy-web.git
tomxiang
page-spy-web
page-spy-web
main

搜索帮助