获得徽章 0
- 后端开发涵盖了很多不同的技术和概念,包括服务器端编程语言(如Java、Python、Node.js等)、数据库管理、API设计与开发、网络协议等等。完成后端课程后,你将对这些领域有更全面的了解。评论1
- 后端开发在实际工作中通常需要与前端开发、产品经理、测试人员等其他团队成员密切合作。学习后端课程会增强你对团队合作和沟通的意识,为未来在团队中协作开发项目打下基础。评论1
- vuecli生成的项目 uniapp+vue3+vite模式下 打包生成h5时,大佬们有遇到过配置编译去除注释,没被注释的情况吗,大佬们有什么解决方案
build: {
//打包环境移除console.log,debugger
minify: 'terser',
terserOptions: {
format: {
// 去除注释
comments: false,
},
compress: {
warnings: false,
drop_console: true, // console
drop_debugger: true,
// directives: true,
// dead_code: true,
pure_funcs: ['console.log'], // 移除console
},
},
//打包文件按照类型分文件夹显示
rollupOptions: {
input: {
main: path.resolve(__dirname, 'index.html'),
},
output: {
chunkFileNames: 'js/[name]-[hash].js',
entryFileNames: 'js/[name]-[hash].js',
assetFileNames: '[ext]/[name]-[hash].[ext]',
},
},
},展开1730