Webpack Bundle 项目教程

Webpack Bundle 项目教程

webpack-bundleBundle to Integrate Webpack into Symfony项目地址:https://gitcode.com/gh_mirrors/we/webpack-bundle

1. 项目的目录结构及介绍

webpack-bundle/
├── src/
│   ├── index.js
│   ├── utils.js
│   ├── common.js
│   ├── index.css
│   └── index.html
├── dist/
│   ├── main.js
│   ├── index.bundle.css
│   └── utils.bundle.js
├── webpack.config.js
├── package.json
└── README.md
  • src/:包含项目的源代码文件。
    • index.js:项目的入口文件。
    • utils.js:包含一些工具函数。
    • common.js:包含一些公共函数。
    • index.css:项目的样式文件。
    • index.html:HTML 模板文件。
  • dist/:包含打包后的文件。
    • main.js:主要的打包文件。
    • index.bundle.css:打包后的 CSS 文件。
    • utils.bundle.js:打包后的工具函数文件。
  • webpack.config.js:Webpack 的配置文件。
  • package.json:项目的依赖和脚本配置文件。
  • README.md:项目的说明文档。

2. 项目的启动文件介绍

项目的启动文件是 src/index.js,它是 Webpack 打包的入口文件。以下是 index.js 的示例代码:

import './index.css';
const { log } = require('./common');

log('webpack');

在这个文件中,我们引入了 index.css 样式文件和 common.js 中的 log 函数,并在文件中调用了 log 函数。

3. 项目的配置文件介绍

项目的配置文件是 webpack.config.js,它包含了 Webpack 的打包配置。以下是 webpack.config.js 的示例代码:

const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');

module.exports = {
  entry: {
    index: './src/index.js',
    utils: './src/utils.js'
  },
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: '[name].bundle.js'
  },
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          MiniCssExtractPlugin.loader,
          'css-loader'
        ]
      }
    ]
  },
  plugins: [
    new MiniCssExtractPlugin({
      filename: '[name].bundle.css'
    })
  ]
};

在这个配置文件中:

  • entry:定义了打包的入口文件。
  • output:定义了打包后的文件输出路径和文件名。
  • module:定义了模块的加载规则,这里配置了 CSS 文件的加载器。
  • plugins:使用了 MiniCssExtractPlugin 插件来抽离 CSS 文件。

通过这个配置文件,Webpack 会根据入口文件打包生成相应的 bundle 文件,并将 CSS 文件抽离成单独的文件。

webpack-bundleBundle to Integrate Webpack into Symfony项目地址:https://gitcode.com/gh_mirrors/we/webpack-bundle

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

吴年前Myrtle

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值