I have the following structure in my react project
--project
|
--main
|
-- public
|
-- index.html
-- src
|
-- index.js
webpack.dev.config.js
webpack.prod.config.js
-- node_modules
-- package.json
For the above structure, when I run npm start, I am getting below error
Could not find a required file. Name: index.html Searched in:
C:xampphtdocsprojectpublic
because the public folder is there inside main folder. How can I run the code? Please tell me.
EDIT
output: {
filename: 'js/[name].js',
path: path.resolve('/main/public/'),
publicPath: '/main/public'
}
tried setting the path in webpack
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…