1 Star 16 Fork 0

程杨/nuxt-blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.vscode
assets
components
layouts
middleware
pages
plugins
server
static
store
test
.babelrc
.editorconfig
.gitignore
LICENSE
README.md
jest.config.js
nuxt.config.js
package-lock.json
package.json
克隆/下载
nuxt.config.js 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
module.exports = {
mode: "universal",
/*
** Headers of the page
*/
head: {
title: process.env.npm_package_name || "",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{
hid: "description",
name: "description",
content: process.env.npm_package_description || "",
},
],
link: [
{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
],
},
/*
** Customize the progress-bar color
*/
loading: { color: "#fff" },
/*
** Global CSS
*/
css: [
"~/assets/css/common.css",
"~/assets/css/normailze.css",
],
/*
** Plugins to load before mounting the App
*/
plugins: [
"~/plugins/element-ui",
"~/plugins/highlight",
"~/plugins/ant-design-vue",
"~/plugins/api",
],
/*
** Nuxt.js dev-modules
*/
buildModules: [],
/*
** Nuxt.js modules
*/
modules: [
// Doc: https://bootstrap-vue.js.org
"bootstrap-vue/nuxt",
// Doc: https://axios.nuxtjs.org/usage
"@nuxtjs/axios",
],
/*
** Axios module configuration
** See https://axios.nuxtjs.org/options
*/
axios: {
// 服务端访问前缀
baseURL: "http://localhost:8081",
// 客户端访问前缀
browserBaseURL: "http://localhost:8081",
proxy: true,
},
proxy: {
changeOrigin: true,
},
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
extend(config, ctx) {
},
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/rainbowecho/nuxt-blog.git
git@gitee.com:rainbowecho/nuxt-blog.git
rainbowecho
nuxt-blog
nuxt-blog
master

搜索帮助