1. node_modules  文件夹

    项目依赖(对webpack进行了封装)

 

2. public 文件夹

    1.favicon.ico  是 网站图标

    2.index.html  页面入口文件

 

3. src 文件夹 (源码)

     1.main.js   入口js

 

4. postcss.config.js

module.exports = {
  plugins: {
    autoprefixer: {}
  }
}

   使用autoprefixer   CSS兼容性插件, .browserslistrc配置使用CSS兼容性插件的使用范围

5.  .eslintrc.js 配置

6.  .gitignore 指定文件无需提交到git上

7. balel.config.js 使用一些预设

8. package.json 项目描述及依赖

9. package-lock.json 版本管理使用的文件

 

 

Logo

前往低代码交流专区

更多推荐