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
I tried to follow the steps in the Getting Started guide (https://github.com/material-components/material-components-web/blob/master/docs/getting-started.md) but i was not able to access in the browser the url: http://localhost:8080/ because i received an error: Cannot GET /
http://localhost:8080/
Cannot GET /
I get an error in the browser: "Cannot GET /"
According to the Getting started guide i should see: a blue “Hello World"
I found a fix:
devServer: { static: { directory: __dirname, }, compress: true, },
{ test: /\.js$/, loader: 'babel-loader', query: { presets: ['@babel/preset-env'], }, }
to
{ test: /\.js$/, loader: "babel-loader", options: { presets: ["@babel/preset-env"], }, },
module.exports = [ { mode: "development", ..........................................................
mdc-ripple-surface
The text was updated successfully, but these errors were encountered:
what do you mean by "add to the file webpack.config.js the following section"
Sorry, something went wrong.
No branches or pull requests
Bug report
I tried to follow the steps in the Getting Started guide (https://github.com/material-components/material-components-web/blob/master/docs/getting-started.md) but i was not able to access in the browser the url:
http://localhost:8080/
because i received an error:
Cannot GET /
Steps to reproduce
Actual behavior
I get an error in the browser: "Cannot GET /"
Expected behavior
According to the Getting started guide i should see: a blue “Hello World"
Your Environment:
Possible solution
I found a fix:
to
mdc-ripple-surface
to button .foo-buttonThe text was updated successfully, but these errors were encountered: