forked from epicmaxco/vuestic-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Still many errors though.
- Loading branch information
Showing
14 changed files
with
259 additions
and
737 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
> 1% | ||
last 2 versions | ||
not ie <= 8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,5 @@ module.exports = { | |
}, | ||
parserOptions: { | ||
parser: 'babel-eslint' | ||
} | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,22 @@ | ||
.DS_Store | ||
node_modules/ | ||
dist/ | ||
npm-debug.log | ||
package-lock.json | ||
/yarn-error.log | ||
.idea/ | ||
node_modules | ||
/dist | ||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
inspect.js | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
// https://github.com/michael-ciniawsky/postcss-load-config | ||
|
||
module.exports = { | ||
"plugins": { | ||
// to edit target browsers: use "browserslist" field in package.json | ||
"autoprefixer": {} | ||
plugins: { | ||
autoprefixer: {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
presets: [ | ||
'@vue/app' | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/vuestic-theme/vuestic-components/vuestic-chart/chart-types/PieChart.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
const path = require('path') | ||
|
||
module.exports = { | ||
lintOnSave: false, | ||
pages: { | ||
index: { | ||
// entry for the page | ||
entry: 'src/main.js', | ||
// the source template | ||
template: 'public/index.html', | ||
// output as dist/index.html | ||
filename: 'index.html', | ||
// when using title option, | ||
// template title tag needs to be <title><%= htmlWebpackPlugin.options.title %></title> | ||
title: 'Vuestic Admin', | ||
// chunks to include on this page, by default includes | ||
// extracted common chunks and vendor chunks. | ||
chunks: ['chunk-vendors', 'chunk-common', 'index'], | ||
}, | ||
}, | ||
configureWebpack: { | ||
resolve: { | ||
alias: { | ||
'vue$': 'vue/dist/vue.esm.js', | ||
'@': path.resolve('src'), | ||
'src': path.resolve('src'), | ||
'assets': path.resolve('src/assets'), | ||
'components': path.resolve('src/components'), | ||
'services': path.resolve('src/services'), | ||
'directives': path.resolve('src/directives'), | ||
'vuestic-mixins': path.resolve('src/vuestic-theme/vuestic-mixins'), | ||
'vuestic-components': path.resolve('src/vuestic-theme/vuestic-components'), | ||
'vuestic-directives': path.resolve('src/vuestic-theme/vuestic-directives'), | ||
'vuestic-theme': path.resolve('src/vuestic-theme'), | ||
'data': path.resolve('src/data'), | ||
'vuex-store': path.resolve('src/store') | ||
} | ||
} | ||
}, | ||
css: { | ||
loaderOptions: { | ||
// pass options to sass-loader | ||
sass: { | ||
// @/ is an alias to src/ | ||
data: `@import "@/sass/shared.scss";` | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.