https://github.com/learncodingeasy/firebase-auth
https://github.com/learncodingeasy/firebase-auth
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/learncodingeasy/firebase-auth
- Owner: LearnCodingEasy
- Created: 2022-09-04T04:57:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-05T00:40:25.000Z (over 3 years ago)
- Last Synced: 2025-01-24T00:38:12.286Z (12 months ago)
- Language: JavaScript
- Size: 960 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Firebase-Auth
## Go To project Name
> cd projectName
### Create
- Src >
- index.js
- Dist >
- index.html
## Work With Webpack
#### Project Start
```text
npm init -y
```
**This Is Create File Package.json**
#### Install Webpack & Webpack-Cli
```text
npm i webpack webpack-cli -D
```
**This Is Create Folder node_modules**
#### Create a File Named Webpack.Config.Js
```text
Webpack.Config.Js
```
#### Inside File Webpack.Config.Js
```text
const path = require("path");
module.exports = {
entry: "./src/index.js",
output: {
path: path.resolve(__dirname, "dist/js"),
filename: "script.js",
},
devtool: "eval-source-map",
watch: true,
};
```
#### Run Webpack inside file Package.Json In To Scripts command
```text
"build": "webpack --mode=development"
```
#### Run Project
```text
npm run build
```
#### Watch Video
[Youtube Pages](https://www.youtube.com/watch?v=vDuXmQPcSL0&feature=emb_imp_woyt)
## Adding materialize
```text
```
```text
```