问题描述
自己手写的webpack4.x
脚手架,发现执行yarn build
之后的文件是有个报错的
index.html:1 GET file:///Users/xhfkindergarten/repository/webpack-react/dist/static/initGlobalSize.js net::ERR_FILE_NOT_FOUND
因为我在我的index.html
模板里面引入了static。initialGlobalSize.js
文件。但是这个文件似乎没有被打包进去
// index.html
<body>
<div id="root"></div>
<script src="./static/initGlobalSize.js"></script>
</body>
目录结构
|-index.html
|-static
|-src
想了想,在rules的include
里面自己确实也只写了src这一个目录
include: resolve('src') // path.join(__dirname, '../src')
可是看了一下之前用过的脚手架,这一块也没有不同
别的尝试
我尝试将include
改成一个数组
include: [
resolve('src'), // path.join(__dirname, '../src')
resolve('static')
],
求问这个问题应该如何解决~~~~
src=require('./1.js')
这样的语法(需要配置 file-loader)