nuxt学习及问题记录
# 文档
# nuxt中文学习资料
https://www.nuxtjs.cn/guide/commands
# nuxt英文文档
https://v2.nuxt.com/docs/directory-structure/modules/
1
2
3
4
5
2
3
4
5
# 问题
- nuxt 报Though the “loose“ option was set to “false“ in your @babel/preset-env config, it will not(解决)
// Build Configuration: https://go.nuxtjs.dev/config-build
// https://blog.csdn.net/lllomh/article/details/116525564
build: {
babel:{
plugins:[
["@babel/plugin-proposal-private-methods", {"loose": true}]
]
}
}
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
上次更新: 2023-09-07 10:22:14