npm install --save-dev extract-text-webpack-plugin
要大写css
const ExtractTextPlugin = require("extract-text-webpack-plugin");
{ test: /\.css$/, use: ExtractTextPlugin.extract({ fallback: "style-loader", use: "css-loader" }) },
plugins: [ new ExtractTextPlugin("css/index.css"), ],
var website ={ publicPath:"http://192.168.1.9:1717/" } output: { //绝对路径 path: path.resolve(__dirname, 'dist'), filename: '[name].js', publicPath:website.publicPath },
const path = require('path'); const uglify = require('uglifyjs-webpack-plugin'); const htmlPlugin = require('html-webpack-plugin'); const ExtractTextPlugin = require("extract-text-webpack-plugin"); var website ={ publicPath:"http://192.168.1.9:1717/" } module.exports = { // 入口 entry: { entry: './src/entry.js', }, // 出口 output: { //绝对路径 path: path.resolve(__dirname, 'dist'), filename: '[name].js', publicPath:website.publicPath }, // 模块 module: { //规则 rules: [ { test: /\.css$/, use: ExtractTextPlugin.extract({ fallback: "style-loader", use: "css-loader" }) }, { test: /\.(png|jpg|gif)/, use: [{ loader: 'url-loader', options: { limit: 5000 } }] } ] }, //插件 plugins: [ // new uglify() new htmlPlugin({ minify: { removeAttributeQuotes: true }, hash: true, template: './src/index.html' }), new ExtractTextPlugin("css/index.css"), ], //开发服务 devServer: { contentBase: path.resolve(__dirname, 'dist'), host: '192.168.1.9', compress: true, //服务端是否启用压缩 port: 1717 } }
webpack npm run server
Use Chunks.groupsIterable and filter by instanceof Entrypoint instead
由于webpack的版本是4.X,要降级成3.xhtml
https://blog.csdn.net/gezilan...webpack
Cannot destructure property
compile of 'undefined' or 'null'.
webpack-dev-server若是是3.x的话,webpack必须是4.x才不会报此TypeError: Cannot read property 'compile' of undefined错误, 同理若是webpack是3.x,则webpack-dev-server必须是2.xweb