代码拉取完成,页面将自动刷新
同步操作将从 邱权武(qiuquanwu)/ssr-nuxt-js 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
export default {
// mode: 'universal',
// server: {
// prot: 3000,
// host: '0.0.0.0'
// },
// Global page headers (https://go.nuxtjs.dev/config-head)
head: {
title: process.env.npm_package_name || 'myapp',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: '' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
],
// script: [
// {src: '外部链接'}
// ],
// link: [
// { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
// { rel: 'stylesheet', href: '外部链接' }
// ],
},
// middleware
router: {
middleware: 'auth',
// 扩展路由
extendRoutes (routes, resolve) {
console.log(routes)
routes.push({
name: 'root',
path: '/index',
component: resolve(__dirname, 'pages/index.vue')
})
}
},
// 可以设置loading 也可以指定自己的组件
// loading: {
// color: 'red',
// height: '3px'
// },
loading: '~/components/loading.vue',
// Global CSS (https://go.nuxtjs.dev/config-css)
// 全局样式
css: [
'assets/css/base.css',
'assets/css/transition.css',
'element-ui/lib/theme-chalk/index.css'
],
// Plugins to run before rendering page (https://go.nuxtjs.dev/config-plugins)
plugins: [
'~/plugins/router',
{
src: '~/plugins/axios',
ssr: true // 开启服务端渲染
},
{
src: '~/plugins/element-ui',
ssr: true,
// mode: 'server' // or client // v2.4+
},
'~/plugins/mixins'
],
// 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',
'@nuxtjs/style-resources'
],
styleResources: { // 需要添加这个 用来配置全局
scss: [
'./assets/scss/global.scss'
]
},
// 跨域
axios: {
proxy: true, // 开启跨域行为
// prefix: '/api', //baseUrl
},
proxy: { // 代理
'/api/': {
target: 'http://localhost:3001', //代理转发地址
changeOrigin: true,
pathRewrite: {
// '^/api': ''
}
}
},
// Build Configuration (https://go.nuxtjs.dev/config-build)
build: {
transpile: [/^element-ui/]
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。