书栈网 · BookStack 本次搜索耗时 0.031 秒,为您找到 2935 个相关结果.
  • Usage with bundlers

    Usage with bundlers Webpack 5 Without serving the client files Including serving the client files Usage with bundlers While less common than frontend bundling, it is totally ...
  • 介绍

    介绍 Vue Loader 是什么? 介绍 版本说明 这份文档是为 Vue Loader v15 及以上版本撰写的。如果你正在从 v14 或更早的版本往这里迁移,请查阅迁移指南 。如果你正在使用老版本,其对应的文档在此 。 Vue Loader 是什么? Vue Loader 是一个 webpack 的 loader,它允许你以一种名为单...
  • 新构建方案

    新构建方案 因为底层抛弃webpack,大家可能在项目中会遇到如下报错: 若新方案影响到开发,用户可切换至原编译方案: 新构建方案 为了解决小程序开发中实时编译较慢的问题,IDE从0.26版本开始引入了新方案,对应IDE“详情-编译构建-极速编译模式”设置项。在新的构建方案中我们去除了 webpack 做为构建底层,采用了更加面向 web 的做法...
  • 模块方法

    模块方法 ES6(推荐) import export import() Magic Comments CommonJS require require.resolve require.cache require.ensure AMD define (通过 factory 方法导出) define (通过 value 导出)...
  • 配置

    配置 选项 Use custom configuration file Configuration file generators 贡献人员 配置 webpack 开箱即用,可以无需使用任何配置文件。然而,webpack 会假定项目的入口起点为 src/index ,然后会在 dist/main.js 输出结果,并且在生产环境开启压缩和优化...
  • Integrating with Build Tools

    Integrating with Build Tools Babel Install .babelrc Using Command Line Interface package.json Execute Babel from the command line Browserify Install Using Command Line Inte...
  • 简介

    1886 2019-04-06 《EduSoho开发指南》
    简介 目录结构 注意 前端依赖管理 编译构建 简介 EduSoho 采用 ES6 标准的 JavaScript 语法编写前端代码,Yarn 管理前端模块依赖,webpack 编译打包前端模块。 ES6 ES6为ECMAScript 6的简称,是ES标准委员会在2015年推出的JavaScript核心语言标准。相较它的上一个版本(ES...
  • Integrating with Build Tools

    Babel Install .babelrc Using Command Line Interface package.json Execute Babel from the command line Browserify Install Using Command Line Interface Using API Duo Install...
  • Usage

    CLI command reference nest new Description Arguments Options nest generate Arguments Schematics Options nest build Arguments Options nest start Arguments Options nest...
  • 13. 生产环境 vs 开发环境

    1. 增加环境变量 2. 使用环境变量 接着上一节 来,我们要解决上一节所遇到的一个问题。 上一节提到,要让生产环境使用 extract-text-webpack-plugin 这个插件,而开发环境不使用,如何做到呢? 其实原理很简单,只要能区分出哪个是开发环境,哪个是生产环境就可以,只要判断是生产环境的时候就用,不是的话,就不用,就可以了。 ...