您的位置:首页 > 娱乐 > 明星 > webpack+lite-server 构建项目示例

webpack+lite-server 构建项目示例

2024/10/4 21:40:47 来源:https://blog.csdn.net/sun_weitao/article/details/141953623  浏览:    关键词:webpack+lite-server 构建项目示例

首先安装以下库

npm install --save-dev webpack webpack-cli lite-server
npm install --save-dev babel-loader @babel/core @babel/preset-env

项目结构

webpack.config.js 配置

const path = require("path");module.exports = {entry: "./src/index.js",output: {filename: "bundle.js",path: path.resolve(__dirname, "dist"),},module: {rules: [{test: /\.js$/,exclude: /node_modules/,use:{loader:'babel-loader'}},],},mode:"development",devtool:"inline-source-map"
};

dist/index.html 加入以下内容

    <script src="bundle.js" type="module"></script>

 bs-config.json 设置访问文件夹

{"server":{"baseDir":"./dist"}
}

package.json 填入下列内容

"scripts": {"start": "lite-server","build":"webpack","dev":"webpack --watch & lite-server","test": "echo \"Error: no test specified\" && exit 1"},

 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com