加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nuxt.config.ts 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
江夏 提交于 2023-05-08 23:22 . feat: cdn引入csshake库
import { fileURLToPath } from 'node:url'
import fs from 'fs'
import Icons from 'unplugin-icons/vite'
const prefixPath: any = process.env.VITE_NUXT_PREFIX_PATH
console.warn({
BASE_URL: process.env.VITE_NUXT_BASE_URL,
当前环境: process.env.NODE_ENV,
prefixPath,
})
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
// debug: process.env.NODE_ENV !== 'production',
debug: false,
modules: [
'@vueuse/nuxt',
'~/modules/sitemap',
'@tailvue/nuxt',
'@pinia/nuxt'
// '@kevinmarrec/nuxt-pwa'
],
sitemap: {
hostname: 'https://jiang-xia.top',
},
// pwa: {
// workbox: {
// enabled: process.env.NODE_ENV === 'production',
// },
// manifest: {
// name: 'Blog',
// short_name: 'Blog',
// },
// },
app: {
head: {
link: [
{ rel: 'stylesheet', href: 'https://cdn.staticfile.org/csshake/1.5.3/csshake.min.css', }
],
},
pageTransition: {
name: 'scale',
appear: true,
mode: 'out-in',
},
},
css: ['~/assets/css/main.css', '~/assets/font/iconfont.css'],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
vite: {
define: {},
plugins: [
Icons({
// the feature below is experimental ⬇️
autoInstall: true,
})
],
},
// head: {
// // 这里配置不生效
// script: [{ src: '', }],
// },
router: {},
// 此文件只能用process
nitro: {
// 配置代理s
devProxy: {
[prefixPath]: {
target: process.env.VITE_NUXT_BASE_URL,
changeOrigin: true,
rewrite: (path: string) => path.replace(new RegExp(`^${prefixPath}`), ''),
},
},
},
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化