Configuration 您所在的位置:网站首页 webpackbase Configuration

Configuration

#Configuration | 来源: 网络整理| 查看: 265

Out of the box, webpack won't require you to use a configuration file. However, it will assume the entry point of your project is src/index.js and will output the result in dist/main.js minified and optimized for production.

tip

createapp.dev is an online tool for creating custom webpack configurations. It allows you to select various features that will be combined and added to the resulting configuration file. Also, it generates an example project based on provided webpack configuration that you can review in your browser and download.

Usually, your projects will need to extend this functionality, for this you can create a webpack.config.js file in the root folder and webpack will automatically use it.

All the available configuration options are specified below.

tip

New to webpack? Check out our guide to some of webpack's core concepts to get started!

Use a different configuration file

If for some reason you want to use a different configuration file depending on certain situations, you can change this via command line by using the --config flag.

package.json

"scripts": { "build": "webpack --config prod.config.js" }Set up a new webpack projectwarning

webpack applies configuration defaults after plugins defaults are applied.

Webpack has a huge set of options which might be overwhelming to you, please take advantage of webpack-cli's init command which could rapidly generate webpack configuration files for your project requirements, it will ask you a couple of questions before creating a configuration file.

npx webpack init

npx might prompt you to install @webpack-cli/generators if it is not yet installed in the project or globally. You might also get additional packages installed to your project depending on the choices you've made during the configuration generation.

$ npx webpack init [webpack-cli] For using this command you need to install: '@webpack-cli/generators' package. [webpack-cli] Would you like to install '@webpack-cli/generators' package? (That will run 'npm install -D @webpack-cli/generators') (Y/n) devDependencies: + @webpack-cli/generators 2.5.0 ? Which of the following JS solutions do you want to use? ES6 ? Do you want to use webpack-dev-server? Yes ? Do you want to simplify the creation of HTML files for your bundle? Yes ? Do you want to add PWA support? No ? Which of the following CSS solutions do you want to use? CSS only ? Will you be using PostCSS in your project? Yes ? Do you want to extract CSS for every file? Only for Production ? Do you like to install prettier to format generated configuration? Yes ? Pick a package manager: pnpm [webpack-cli] ℹ INFO Initialising project... devDependencies: + @babel/core 7.19.3 + @babel/preset-env 7.19.4 + autoprefixer 10.4.12 + babel-loader 8.2.5 + css-loader 6.7.1 + html-webpack-plugin 5.5.0 + mini-css-extract-plugin 2.6.1 + postcss 8.4.17 + postcss-loader 7.0.1 + prettier 2.7.1 + style-loader 3.3.1 + webpack-dev-server 4.11.1 [webpack-cli] Project has been initialised with webpack!


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

      专题文章
        CopyRight 2018-2019 实验室设备网 版权所有