1 Star 0 Fork 0

Cabber/CMS网站Nuxt3新建站(nuxt3 + cms + wattjs)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nuxt.config.ts 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
xiejunping 提交于 2023-07-31 14:57 . feat:init
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
baseURL: '/',
head: {
htmlAttrs: {
lang: 'zh-CN'
},
viewport: 'width=device-width, initial-scale=1, viewport-fit=cover',
link: [
{
rel: 'preconnect',
href: '//bedimage.jsvue.cn',
crossorigin: true
}
]
}
},
components: [
{
path: '~/components/',
pathPrefix: false // 自动导入组件名称
}
],
experimental: {
externalVue: true,
payloadExtraction: false
},
modules: [
'@pinia/nuxt',
'@ant-design-vue/nuxt'
],
antd:{
// Options
},
ssr: false, // h5单页关闭 'dayjs'
build: {
transpile: [],
},
typescript: {
shim: false
},
css: [
'assets/css/index.css'
],
postcss: {
plugins: {
}
},
runtimeConfig: {
public: {},
app: {
'BASE_URL': 'https://api.jsvue.cn',
'XSRF_HEADER': 'x-basement-token',
'BUS_TYPE': 7, // 上传业务枚举
'APP_ID': 'H5D9B674D',
'APP_NAME': '代码演示库',
}
},
devServer: {
host: 'test.jsvue.cn',
https: true,
port: 443
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ChuPiJiang/library-nuxt3-cms.git
[email protected]:ChuPiJiang/library-nuxt3-cms.git
ChuPiJiang
library-nuxt3-cms
CMS网站Nuxt3新建站(nuxt3 + cms + wattjs)
master

搜索帮助