Skip to content
New issue

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

how can i make build for this project? #25

Open
FireMonkey92 opened this issue Jun 12, 2019 · 0 comments
Open

how can i make build for this project? #25

FireMonkey92 opened this issue Jun 12, 2019 · 0 comments

Comments

@FireMonkey92
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant