mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
fix: 修复 cdn 配置导致构建生产环境错误
This commit is contained in:
parent
8db423a018
commit
f28e343e6c
@ -33,7 +33,6 @@ import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
|
|||||||
import config from './vite.custom.config'
|
import config from './vite.custom.config'
|
||||||
|
|
||||||
import type { PluginOption } from 'vite'
|
import type { PluginOption } from 'vite'
|
||||||
import type pkg from './package.json'
|
|
||||||
|
|
||||||
// 仅适用于报告模式(report)
|
// 仅适用于报告模式(report)
|
||||||
function onlyReportOptions(mode: string) {
|
function onlyReportOptions(mode: string) {
|
||||||
@ -50,55 +49,53 @@ function onlyReportOptions(mode: string) {
|
|||||||
|
|
||||||
// 仅适用于构建模式(任何构建模式:preview、build、report...)
|
// 仅适用于构建模式(任何构建模式:preview、build、report...)
|
||||||
function onlyBuildOptions(mode: string) {
|
function onlyBuildOptions(mode: string) {
|
||||||
// cdn 列表
|
const url = 'https://cdnjs.cloudflare.com/ajax/libs'
|
||||||
const cdnOptions: Array<{
|
|
||||||
name: keyof typeof pkg.dependencies
|
|
||||||
global: string
|
|
||||||
}> = [
|
|
||||||
{
|
|
||||||
name: 'vue',
|
|
||||||
global: 'Vue',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'vue-demi',
|
|
||||||
global: 'VueDemi',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'naive-ui',
|
|
||||||
global: 'naive',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'pinia',
|
|
||||||
global: 'Pinia',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'vue-router',
|
|
||||||
global: 'VueRouter',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'vue-i18n',
|
|
||||||
global: 'VueI18n',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'echarts',
|
|
||||||
global: 'echarts',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'axios',
|
|
||||||
global: 'axios',
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
viteCDNPlugin({
|
viteCDNPlugin({
|
||||||
// modules 顺序 vue, vue-demi 必须保持当前顺序加载,否则会出现加载错误问题
|
// modules 顺序 vue, vue-demi 必须保持当前顺序加载,否则会出现加载错误问题
|
||||||
modules: cdnOptions.map((curr) => {
|
modules: [
|
||||||
return {
|
{
|
||||||
name: curr.name,
|
name: 'vue',
|
||||||
global: curr.global,
|
global: 'Vue',
|
||||||
resolve: `https://cdnjs.cloudflare.com/ajax/libs/${curr.name}/${getDependenciesVersion(curr.name)}/${curr.name}.min.js`,
|
resolve: `${url}/vue/${getDependenciesVersion('vue')}/vue.global.min.js`,
|
||||||
}
|
},
|
||||||
}),
|
{
|
||||||
|
name: 'vue-demi',
|
||||||
|
global: 'VueDemi',
|
||||||
|
resolve: `${url}/vue-demi/${getDependenciesVersion('vue-demi')}/index.iife.min.js`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'naive-ui',
|
||||||
|
global: 'naive',
|
||||||
|
resolve: `${url}/naive-ui/${getDependenciesVersion('naive-ui')}/index.prod.js`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'pinia',
|
||||||
|
global: 'Pinia',
|
||||||
|
resolve: `${url}/pinia/${getDependenciesVersion('pinia')}/pinia.iife.min.js`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'vue-router',
|
||||||
|
global: 'VueRouter',
|
||||||
|
resolve: `${url}/vue-router/${getDependenciesVersion('vue-router')}/vue-router.global.min.js`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'vue-i18n',
|
||||||
|
global: 'VueI18n',
|
||||||
|
resolve: `${url}/vue-i18n/${getDependenciesVersion('vue-i18n')}/vue-i18n.global.min.js`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'echarts',
|
||||||
|
global: 'echarts',
|
||||||
|
resolve: `${url}/echarts/${getDependenciesVersion('echarts')}/echarts.min.js`,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'axios',
|
||||||
|
global: 'axios',
|
||||||
|
resolve: `${url}/axios/${getDependenciesVersion('axios')}/axios.min.js`,
|
||||||
|
},
|
||||||
|
],
|
||||||
}),
|
}),
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user