Nuxt VSCODE node调试
问题
Nuxt使用时是有server端的,服务端使用node, 要想启动服务端代码的调试功能, 就需要额外配置
解决方案
在编辑器里启动调试功能,用VSCODE最佳,(使用谷歌浏览器也可以,但是比较麻烦,这里暂不研究)
Continue reading…
Nuxt使用时是有server端的,服务端使用node, 要想启动服务端代码的调试功能, 就需要额外配置
在编辑器里启动调试功能,用VSCODE最佳,(使用谷歌浏览器也可以,但是比较麻烦,这里暂不研究)
Continue reading…
公司使用gitlab私有仓库,开发把代码clone下来,并配置了全局账户,这样每次提交不用登陆,然后自己在github私有仓库的代码clone下来后续如何配置提交?
针对使用https作为git地址的方法:
采用git提供的本地存储账户信息功能,把github自己的账户配置上本地登录信息.
git remote -v
得到 https://github.com/XXX/YYY.git 的项目地址,XXX:为你的用户名, YYY是你的项目名, 复制下来,其实直接从github仓库中copy也一样
git remote set-url origin https://XXX@github.com/XXX/YYY.git
git config --local credential.helper store
tips:
查看是否有credential.helper
git config --global -l
git config --system -l
清除全局设置
git config --global --unset credential.helper
git config --system --unset credential.helper
我的是使用 git config --system -l
打印中包含 credential.helper=manager
说明全局已经配置
文章 github多账号如何切换? 中提到要把全局配置unset掉,我没弄,本地仓库也可以正常push,所以有什么细节可以参考下原文
https://appsoftea.com/zh/git-multiple-account/
引用自: https://www.zhihu.com/question/23028445 感谢!
nuxt 全局引入sass时,官方例子有bug, github上已经有各种讨论,有很多方法是旧版本的解决方案,无法使用
基于 nuxt 2.0.0版本的解决方案
安装npm包
npm i -D @nuxtjs/style-resources sass-loader node-sass
配置nuxt.config.js
module.exports = {
// Other nuxt.config.js
modules: ['@nuxtjs/style-resources'],
styleResources: {
scss: [
'assets/css/global.scss',
'assets/css/main.scss'
]
}
}
附上2.0.0之前的旧版本的配置,可能有用,未尝试,但是 2.0.0 版本没有用
安装npm包
npm i nuxt-sass-resources-loader
配置nuxt.config.js
module.exports = {
// Other nuxt.config.js
modules: [
[
'nuxt-sass-resources-loader',
[
'assets/css/global.scss',
'assets/css/main.scss'
]åç
]
]
}