加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 785 Bytes
一键复制 编辑 原始数据 按行查看 历史
FFMMCC 提交于 2024-07-15 23:51 . feat:地图大屏map
/*
* @Author: FMC
* @Date: 2024-06-22 22:12:35
* @LastEditors: FMC
* @LastEditTime: 2024-07-15 21:25:38
* @FilePath: \fmc-personal-blog\vite.config.js
* @Description:
*/
import { defineConfig } from 'vite'
import glsl from "vite-plugin-glsl";
import react from '@vitejs/plugin-react';
import path from 'path';
import { fileURLToPath } from 'url';
// 将 import.meta.url 转换为文件路径
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// https://vitejs.dev/config/
export default defineConfig({
publicDir: "./public/",
build:
{
outDir: '../dist',
emptyOutDir: true,
sourcemap: true
},
resolve: {
alias: {
'@': path.resolve(__dirname, 'src')
}
},
plugins: [react(), glsl()],
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化