Skip to content

Commit 44f1dab

Browse files
committed
Install LVT
1 parent 8b6feaf commit 44f1dab

File tree

10 files changed

+67428
-19
lines changed

10 files changed

+67428
-19
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules

My.png

-21.3 KB
Binary file not shown.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# MAHMOD.DEV
2+

index.html

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
<html>
2-
<head>
3-
<title>mahmod.dev</title>
4-
5-
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-151319159-1"></script>
6-
<script>
7-
window.dataLayer = window.dataLayer || [];
8-
function gtag(){dataLayer.push(arguments);}
9-
gtag('js', new Date());
10-
gtag('config', 'UA-151319159-1');
11-
</script>
122

13-
14-
</head>
3+
<head>
4+
<title>Text Laravel Mix</title>
5+
<link rel="stylesheet" href="public/css/app.css">
6+
</head>
157

8+
<body>
9+
<div id="app">
10+
<example-component></example-component>
11+
<div class="max-w-sm mx-auto flex p-6 bg-white rounded-lg shadow-xl">
12+
<div class="ml-6 pt-1">
13+
<h4 class="text-xl text-gray-900 leading-tight">ChitChat</h4>
14+
<p class="text-base text-gray-600 leading-normal">You have a new message!</p>
15+
</div>
16+
</div>
17+
</div>
18+
<script src="public/js/app.js"></script>
19+
</body>
1620

17-
<body>
18-
<div>< CommingSoon ... /> </div>
19-
</body>
20-
21-
22-
23-
</html>
21+
</html>

mix-manifest.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"/public/js/app.js": "/public/js/app.js",
3+
"/public/css/app.css": "/public/css/app.css"
4+
}

package.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "idealog",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"dev": "npm run development",
8+
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
9+
"watch": "npm run development -- --watch",
10+
"watch-poll": "npm run watch -- --watch-poll",
11+
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
12+
"prod": "npm run production",
13+
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/m7modg97/idealog.git"
18+
},
19+
"keywords": [],
20+
"author": "",
21+
"license": "ISC",
22+
"bugs": {
23+
"url": "https://github.com/m7modg97/idealog/issues"
24+
},
25+
"homepage": "https://github.com/m7modg97/idealog#readme",
26+
"devDependencies": {
27+
"cross-env": "^6.0.3",
28+
"laravel-mix": "^5.0.0",
29+
"resolve-url-loader": "^3.1.1",
30+
"sass": "^1.23.6",
31+
"sass-loader": "^8.0.0",
32+
"tailwindcss": "^1.1.3",
33+
"vue-template-compiler": "^2.6.10"
34+
},
35+
"dependencies": {
36+
"vue": "^2.6.10"
37+
}
38+
}

0 commit comments

Comments
 (0)