1 Star 0 Fork 0

Allen/nuxt-vue-blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nuxt.config.js 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
Allen 提交于 2023-12-08 15:59 . 标签页面
export default {
server: {
port: 8082
},
env: {
// 认证客户端,取值 process.env.authURL
authURL: process.env.NODE_ENV === 'dev' ? '//localhost:8080' : '//login.mengxuegu.com'
},
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
title: '阿才的博客',
htmlAttrs: {
lang: 'en'
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: '' },
{ name: 'format-detection', content: 'telephone=no' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/meng.ico' }
]
},
// Global CSS: https://go.nuxtjs.dev/config-css
css: [
// elementui各组件样式
'element-ui/lib/theme-chalk/index.css',
// 自适应隐藏显示样式
'element-ui/lib/theme-chalk/display.css',
// 引入自定义主题样式
'@/assets/themes/index.css',
// 引入全局样式
'@/assets/css/global.css',
// md编辑器
'mavon-editor/dist/css/index.css'
],
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
plugins: [
// 引入插件
'@/plugins/element-ui',
'@/plugins/interceptor',
'@/api/article',
'@/api/common',
'@/api/questions',
// 客户端渲染
{src: '@/plugins/mavon-editor', mode: 'client'}
],
// Auto import components: https://go.nuxtjs.dev/config-components
components: true,
// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
buildModules: [
],
// Modules: https://go.nuxtjs.dev/config-modules
modules: [
'@nuxtjs/axios',
'cookie-universal-nuxt'
],
axios: {
proxy: true,
prefix: '/api'
},
proxy: {
'/api': {
target: 'http://localhost:7308/mock/65658a4d115189002b3b2224/blog',
pathRewrite: { '^/api': ''}
}
},
// Build Configuration: https://go.nuxtjs.dev/config-build
build: {
// 将位于node_modules的模块导出
trsanspile: [/^element-ui/],
// webpack自定义配置
extend(config, ctx) {
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/acaiblog/nuxt-vue-blog.git
git@gitee.com:acaiblog/nuxt-vue-blog.git
acaiblog
nuxt-vue-blog
nuxt-vue-blog
master

搜索帮助