tmagic-editor/playground/vite.config.ts

120 lines
4.0 KiB
TypeScript

/*
* Tencent is pleased to support the open source community by making TMagicEditor available.
*
* Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import path from 'path';
import { defineConfig } from 'vite';
import legacy from '@vitejs/plugin-legacy';
import vue from '@vitejs/plugin-vue';
import vueJsx from '@vitejs/plugin-vue-jsx';
import AutoImport from 'unplugin-auto-import/vite';
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers';
import Components from 'unplugin-vue-components/vite';
export default defineConfig({
plugins: [
AutoImport({
resolvers: [ElementPlusResolver()],
}),
Components({
resolvers: [ElementPlusResolver()],
}),
vue(),
vueJsx(),
legacy({
targets: ['defaults', 'not IE 11'],
}),
],
base: '/tmagic-editor/playground/',
resolve: {
alias: [
{
find: /^@tmagic\/editor\/dist\/style.css/,
replacement: path.join(__dirname, '../packages/editor/src/theme/index.scss'),
},
{
find: /^@tmagic\/form\/src\/theme\/index.scss/,
replacement: path.join(__dirname, '../packages/form/src/theme/index.scss'),
},
{
find: /^@tmagic\/table\/src\/theme\/index.scss/,
replacement: path.join(__dirname, '../packages/table/src/theme/index.scss'),
},
{
find: /^@tmagic\/design\/src\/theme\/index.scss/,
replacement: path.join(__dirname, '../packages/design/src/theme/index.scss'),
},
{ find: /^@tmagic\/core/, replacement: path.join(__dirname, '../packages/core/src/index.ts') },
{ find: /^@editor/, replacement: path.join(__dirname, '../packages/editor/src/') },
{ find: /^@tmagic\/editor/, replacement: path.join(__dirname, '../packages/editor/src/index.ts') },
{ find: /^@tmagic\/schema/, replacement: path.join(__dirname, '../packages/schema/src/index.ts') },
{ find: /^@tmagic\/form/, replacement: path.join(__dirname, '../packages/form/src/index.ts') },
{
find: /^@tmagic\/tmagic-form-runtime/,
replacement: path.join(__dirname, '../runtime/tmagic-form/src/index.ts'),
},
{ find: /^@tmagic\/table/, replacement: path.join(__dirname, '../packages/table/src/index.ts') },
{ find: /^@tmagic\/stage/, replacement: path.join(__dirname, '../packages/stage/src/index.ts') },
{ find: /^@tmagic\/utils/, replacement: path.join(__dirname, '../packages/utils/src/index.ts') },
{ find: /^@tmagic\/design/, replacement: path.join(__dirname, '../packages/design/src/index.ts') },
{
find: /^@tmagic\/data-source/,
replacement: path.join(__dirname, '../packages/data-source/src/index.ts'),
},
{ find: /^@tmagic\/dep/, replacement: path.join(__dirname, '../packages/dep/src/index.ts') },
{ find: /^@data-source/, replacement: path.join(__dirname, '../packages/data-source/src') },
{
find: /^@tmagic\/element-plus-adapter/,
replacement: path.join(__dirname, '../packages/element-plus-adapter/src/index.ts'),
},
],
},
optimizeDeps: {
esbuildOptions: {
define: {
global: 'globalThis',
},
},
},
server: {
host: '0.0.0.0',
port: 8098,
strictPort: true,
proxy: {
'^/tmagic-editor/playground/runtime': {
target: 'http://127.0.0.1:8078',
changeOrigin: true,
prependPath: false,
},
},
open: '/tmagic-editor/playground/',
},
preview: {
proxy: {},
},
build: {
sourcemap: true,
},
});