We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sorry , but i am new at using webpack and I want to create a build for this project, i tried putting script under package.json file like
"scripts": { "dev": "nodemon index.js --ignore client", "build": "webpack" },
and in webpack config file is like, module.exports = { entry: './client/index.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'build.js' }, module: { loaders: [ { test: /.js$/, loader: 'babel-loader' } ], rules: [ { use: 'babel-loader', test: /.js$/, exclude: /node_modules/ }, { use: ['style-loader', 'css-loader'], test: /.css$/ } ] }, plugins: [ new HtmlWebpackPlugin({ template: 'client/index.html' }) ] };
I can not run the build, I have no idea whether I have created the build correctly or not. Please guide me to create the build for this project.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sorry , but i am new at using webpack and I want to create a build for this project, i tried putting script under package.json file like
"scripts": {
"dev": "nodemon index.js --ignore client",
"build": "webpack"
},
and in webpack config file is like,
module.exports = {
entry: './client/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'build.js'
},
module: {
loaders: [
{
test: /.js$/,
loader: 'babel-loader'
}
],
rules: [
{
use: 'babel-loader',
test: /.js$/,
exclude: /node_modules/
},
{
use: ['style-loader', 'css-loader'],
test: /.css$/
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: 'client/index.html'
})
]
};
I can not run the build, I have no idea whether I have created the build correctly or not. Please guide me to create the build for this project.
The text was updated successfully, but these errors were encountered: