webpackVue

webpack成神之路(二)

2019-05-11  本文已影响26人  AAA前端
  1. 现在webpack每次要手动引入js到index.html中,体验很不好。安装插件html-webpack-plugin. 插件用法可以到https://www.npmjs.com/查阅
cnpm i --save-dev html-webpack-plugin

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
    mode: 'production', //开发模式 development  生产模式production
    entry: './src/index.js', // 入口
    output:{
        filename: "index.[hash:8].js",      // 打包后的文件名,带上8位数的hash值
        path: path.resolve(__dirname, 'build')   // 打包后的绝对路径 path自带模块相对路径转换绝对路径
    },
    devServer:{
        port: 1234, // 端口号    不能6666-6669 ,安全限制在chrome中不能成功
        progress: true, // 加上进度条
        contentBase: './', //静态服务的目录。默认当前根目录,如果index.html在src下,这里就要改为./src
        open: true, //自动打开页面
        compress: true, //压缩
    },
    plugins:[   //插件列表
        new HtmlWebpackPlugin({
            template: './index.html',  // 模板
            filename: 'index.html', //打包后的文件名
            minify:{    // 更多配置 https://github.com/kangax/html-minifier#options-quick-reference
                removeAttributeQuotes: true ,// 删除双引号
                collapseWhitespace: true, // 折叠为一行
            },
            hash: true, //在js后面添加hash,防止缓存
        })
    ]
}
  1. 现在配置解析css文件 处理css 首先加安装模块 style-loader, css-loader style-loader是把css加载到index.html中,css-loader是处理css中引入其他css文件的loader;
    image.png

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
    mode: 'development', //开发模式 development  生产模式production
    entry: './src/index.js', // 入口
    output:{
        filename: "index.[hash:8].js",      // 打包后的文件名,带上8位数的hash值
        path: path.resolve(__dirname, 'build')   // 打包后的绝对路径 path自带模块相对路径转换绝对路径
    },
    devServer:{
        port: 1234, // 端口号    不能6666-6669 ,安全限制在chrome中不能成功
        progress: true, // 加上进度条
        contentBase: './', //静态服务的目录。默认当前根目录,如果index.html在src下,这里就要改为./src
        open: true, //自动打开页面
        compress: true, //压缩
    },
    plugins:[   //插件列表
        new HtmlWebpackPlugin({
            template: './index.html',  // 模板
            filename: 'index.html', //打包后的文件名
            minify:{    // 更多配置 https://github.com/kangax/html-minifier#options-quick-reference
                removeAttributeQuotes: true ,// 删除双引号
                collapseWhitespace: true, // 折叠为一行
            },
            hash: true, //在js后面添加hash,防止缓存
        })
    ],
    module:{ // 模块
        rules:[
            {
                test: /\.css$/,
                // use 可以是字符串 数组
                //  style-loader 把css 插入到html中
                // css-loader 处理 @import 其他css的
                // 处理顺序是从后往前处理的
                use:['style-loader', 'css-loader']
            }
           
        ]
    }
}
  1. 当然我们也可以用less sass stylus. 这里用less示范一下。
image.png
  1. 但是这里有个问题,如果我们自己在html中设置body背景色,会被index.js中引入的css样式所覆盖,(require的css在自己写的style之下)


    image.png
    image.png

*我们可以在webpack.config.js中配置 style-loader


image.png
image.png
  1. 抽离css出来

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

module.exports = {
    mode: 'development', 
    entry: './src/index.js', 
    output: {
        filename: "index.[hash:8].js",
        path: path.resolve(__dirname, 'build')  
    },
    devServer: {
        port: 1234, 
        contentBase: './', 
    },
    plugins: [  
        new HtmlWebpackPlugin({
            template: './index.html',  
            filename: 'index.html', 
            minify: {  
                removeAttributeQuotes: true,
                collapseWhitespace: true, 
            },
            hash: true, 
        }),
        new MiniCssExtractPlugin({
            filename: '[name].css',  // css名
            chunkFilename: '[id].css',
          }),
    ],
    module: { // 模块
        rules: [
            {
                test: /\.css$/,
                use: [MiniCssExtractPlugin.loader, 'css-loader']  //MiniCssExtractPlugin.loader替换  style-loader 
            },
            {
                test: /\.less$/,
                use: [MiniCssExtractPlugin.loader, 'css-loader', 'less-loader']
            }

        ]
    }
}
image.png

*css被单独抽离出来了

  1. 现在css有些样式没有加上浏览器前缀,比如rotate。现在需要安装cnpm i --save-dev autoprefixer cssnano postcss-cssnext (autoprefixer 自动添加前缀,cssnano 压缩css代码,postcss-cssnext css的下一代,使用css4的新语法等等)
body{
    p{
        color: #666;
        font-size: 30px;
        background-color: aqua;
        transform: rotate(30deg);
    }
}
image.png
  1. 还有另一种压缩css的方法,可以看 mini-css-extract-plugin 插件使用中有说明https://www.npmjs.com/package/mini-css-extract-plugin
image.png

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const TerserJSPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');

module.exports = {
    mode: 'development', 
    entry: './src/index.js', 
    output: {
        filename: "index.[hash:8].js",
        path: path.resolve(__dirname, 'build')  
    },
    devServer: {
        port: 1234, 
        contentBase: './', 
    },
    plugins: [  
        new HtmlWebpackPlugin({
            template: './index.html',  
            filename: 'index.html', 
            minify: {  
                removeAttributeQuotes: true,
                collapseWhitespace: true, 
            }
        }),
        new MiniCssExtractPlugin({
            filename: '[name].css',
            chunkFilename: '[id].css',
          }),
    ],
    optimization: {
        minimizer: [new TerserJSPlugin({}), new OptimizeCSSAssetsPlugin({})],
      },
    module: { // 模块
        rules: [
            {
                test: /\.css$/,
                use: [MiniCssExtractPlugin.loader, 'css-loader','postcss-loader'] 
            },
            {
                test: /\.less$/,
                use: [MiniCssExtractPlugin.loader, 'css-loader','postcss-loader', 'less-loader']
            }

        ]
    }
}
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
    optimization: {
        minimizer: [new UglifyJsPlugin(
            {
                cache: true,  // 启用cache缓存
                parallel: true, // 并发打包
                sourceMap: true, // 映射原代码地址
              }
        ), new TerserJSPlugin({}), new OptimizeCSSAssetsPlugin({})],
    },
image.png
  1. 现在还有点,每次打包前要自己手动删除build文件夹,不然里面有前面打包生成的js.我们想每次打包前自动删除build文件夹。安装cnpm install --save-dev clean-webpack-plugin
const CleanWebpackPlugin = require('clean-webpack-plugin');
plugins: [
        new CleanWebpackPlugin(),
    ]

粘贴一下 目前代码;

webpack.config.js


const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const TerserJSPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');

module.exports = {
    mode: 'production', 
    optimization: {
        minimizer: [new UglifyJsPlugin(
            {
                cache: true,  // 启用cache缓存
                parallel: true, // 并发打包
                sourceMap: true, // 映射原代码地址
              }
        ), new TerserJSPlugin({}), new OptimizeCSSAssetsPlugin({})],
    },
    entry: './src/index.js', 
    output: {
        filename: "index.[hash:8].js",
        path: path.resolve(__dirname, 'build')  
    },
    devServer: {
        port: 1234, 
        contentBase: './', 
    },
    plugins: [  
        new CleanWebpackPlugin(),
        new HtmlWebpackPlugin({
            template: './index.html',  
            filename: 'index.html', 
            minify: {  
                removeAttributeQuotes: true,
                collapseWhitespace: true, 
            }
        }),
        new MiniCssExtractPlugin({
            filename: '[name].css',
            chunkFilename: '[id].css',
          }),
    ],
    module: { // 模块
        rules: [
            {
                test: /\.css$/,
                use: [MiniCssExtractPlugin.loader, 'css-loader','postcss-loader'] 
            },
            {
                test: /\.less$/,
                use: [MiniCssExtractPlugin.loader, 'css-loader','postcss-loader', 'less-loader']
            }

        ]
    }
}

postcss.config.js

module.exports = {
    plugins: [require('autoprefixer')(),require('cssnano')()]
}
上一篇下一篇

猜你喜欢

热点阅读