mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-05 06:22:43 +08:00
57 lines
1.4 KiB
JavaScript
57 lines
1.4 KiB
JavaScript
/*
|
|
* @Description:
|
|
* @Version: 1.668
|
|
* @Autor: 地虎降天龙
|
|
* @Date: 2023-10-16 10:53:09
|
|
* @LastEditors: 地虎降天龙
|
|
* @LastEditTime: 2023-11-14 16:47:05
|
|
*/
|
|
// import { resolve } from 'path';
|
|
import { join } from 'path';
|
|
import { defineBuildConfig } from '@fesjs/fes';
|
|
import { templateCompilerOptions } from '@tresjs/core';
|
|
import UnoCSS from 'unocss/vite';
|
|
// import glsl from 'vite-plugin-glsl';
|
|
|
|
export default defineBuildConfig({
|
|
access: {
|
|
roles: {
|
|
admin: ['*'],
|
|
manager: ['/'],
|
|
},
|
|
},
|
|
layout: {
|
|
title: 'Icegl',
|
|
navigation: 'top',
|
|
multiTabs: false,
|
|
isFixedHeader: true,
|
|
// isFixedSidebar: true,
|
|
// sideWidth: 800,
|
|
logo: 'logo.png',
|
|
menus: [],
|
|
},
|
|
enums: {
|
|
status: [
|
|
['0', '无效的'],
|
|
['1', '有效的'],
|
|
],
|
|
},
|
|
//add by 地虎降天龙
|
|
viteVuePlugin: {
|
|
...templateCompilerOptions,
|
|
},
|
|
viteOption: {
|
|
base: "/icegl-three-vue-tres/", // ./ /icegl-three-vue-tres/
|
|
plugins: [
|
|
UnoCSS({
|
|
/* options */
|
|
}),
|
|
// glsl(),
|
|
],
|
|
},
|
|
alias: { PLS: join(__dirname, './src/plugins') },
|
|
// { find: 'pls', replacement: resolve(__dirname, './src/plugins') },
|
|
// { '@': join(__dirname, '/src') }
|
|
});
|
|
|