Skip to content

Commit c5f6b1a

Browse files
committed
Push what I have I guess
1 parent ee9a347 commit c5f6b1a

File tree

3 files changed

+1306
-618
lines changed

3 files changed

+1306
-618
lines changed

package.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"name": "pterodactyl-panel",
3+
"dependencies": {
4+
"vue": "^2.5.7",
5+
"vue-axios": "^2.1.1",
6+
"vue-router": "^3.0.1",
7+
"vuex": "^3.0.1",
8+
"vuex-i18n": "^1.10.5"
9+
},
310
"devDependencies": {
411
"autoprefixer": "^8.2.0",
512
"axios": "^0.18.0",
@@ -33,18 +40,14 @@
3340
"postcss-scss": "^1.0.4",
3441
"tailwindcss": "^0.5.1",
3542
"vee-validate": "^2.0.9",
36-
"vue": "^2.5.7",
37-
"vue-axios": "^2.1.1",
3843
"vue-devtools": "^3.1.9",
3944
"vue-feather-icons": "^4.7.1",
4045
"vue-loader": "^14.2.2",
4146
"vue-mc": "^0.2.4",
42-
"vue-router": "^3.0.1",
4347
"vue-template-compiler": "^2.5.16",
4448
"vueify-insert-css": "^1.0.0",
45-
"vuex": "^3.0.1",
46-
"vuex-i18n": "^1.10.5",
4749
"webpack": "^4.4.1",
50+
"webpack-serve": "^1.0.2",
4851
"webpack-stream": "^4.0.3",
4952
"yargs": "^11.0.0"
5053
},
@@ -55,6 +58,5 @@
5558
"build:components": "./node_modules/gulp-cli/bin/gulp.js components",
5659
"build:styles": "./node_modules/gulp-cli/bin/gulp.js styles",
5760
"build:scripts": "./node_modules/gulp-cli/bin/gulp.js scripts"
58-
},
59-
"dependencies": {}
61+
}
6062
}

webpack.config.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
module.exports = {
2-
entry: './resources/assets/scripts/app.js',
2+
mode: 'development',
3+
performance: {
4+
hints: false,
5+
},
6+
entry: {
7+
main: './resources/assets/scripts/app.js',
8+
},
39
output: {
10+
path: '/dist',
411
filename: 'webpack.build.js',
512
},
613
module: {
@@ -29,10 +36,8 @@ module.exports = {
2936
},
3037
resolve: {
3138
alias: {
32-
// 'vue': 'vue/dist/vue.js'
3339
'vue$': 'vue/dist/vue.esm.js'
3440
},
3541
extensions: ['*', '.js', '.vue', '.json']
3642
},
37-
plugins: [],
3843
};

0 commit comments

Comments
 (0)