Remove remote resources

This commit is contained in:
Gregor Schulte
2023-04-03 21:20:55 +02:00
parent e648aa55f6
commit 22b5e06696
4 changed files with 87 additions and 87 deletions

View File

@@ -3,28 +3,28 @@ module.exports = {
'js',
'jsx',
'json',
'vue',
'vue'
],
transform: {
'^.+\\.vue$': 'vue-jest',
'.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub',
'^.+\\.jsx?$': 'babel-jest',
'^.+\\.jsx?$': 'babel-jest'
},
transformIgnorePatterns: [
'/node_modules/',
'/node_modules/'
],
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
'^@/(.*)$': '<rootDir>/src/$1'
},
snapshotSerializers: [
'jest-serializer-vue',
'jest-serializer-vue'
],
testMatch: [
'**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)',
'**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)'
],
testURL: 'http://localhost/',
watchPlugins: [
'jest-watch-typeahead/filename',
'jest-watch-typeahead/testname',
],
'jest-watch-typeahead/testname'
]
}

View File

@@ -19,7 +19,7 @@
color="white"
contain
>
<v-img src="https://demos.creative-tim.com/vuetify-material-dashboard/favicon.ico" />
<v-img src="favicon.ico" />
</v-list-item-avatar>
<v-list-item-content>

View File

@@ -350,83 +350,83 @@
</template>
<script>
export default {
name: 'DashboardButtons',
export default {
name: 'DashboardButtons',
data: () => ({
colors: [
'default',
'secondary',
'info',
'success',
'warning',
'error',
],
icons: {
left: 'mdi-chevron-left',
right: 'mdi-chevron-right',
info: 'mdi-exclamation',
success: 'mdi-check',
warning: 'mdi-alert',
error: 'mdi-close',
data: () => ({
colors: [
'default',
'secondary',
'info',
'success',
'warning',
'error'
],
icons: {
left: 'mdi-chevron-left',
right: 'mdi-chevron-right',
info: 'mdi-exclamation',
success: 'mdi-check',
warning: 'mdi-alert',
error: 'mdi-close'
},
social: [
{
color: '#55ACEE',
icon: 'mdi-twitter',
text: 'Connect with Twitter'
},
social: [
{
color: '#55ACEE',
icon: 'mdi-twitter',
text: 'Connect with Twitter',
},
{
color: '#3B5998',
icon: 'mdi-facebook',
text: 'Share - 2.2K',
},
{
color: '#DD4b39',
icon: 'mdi-google-plus',
text: 'Share on Google+',
},
{
color: '#0976B4',
icon: 'mdi-linkedin',
text: 'Connect with LinkedIn',
},
{
color: '#CC2127',
icon: 'mdi-pinterest',
text: 'Pint It - 212',
},
{
color: '#E52D27',
icon: 'mdi-youtube',
text: 'View on Youtube',
},
{
color: '#35465C',
icon: 'mdi-tumblr',
text: 'Repost',
},
{
color: '#333333',
icon: 'mdi-github-circle',
text: 'Connect with Github',
},
{
color: '#1769FF',
icon: 'mdi-behance',
text: 'Follow Us',
},
{
color: '#EA4C89',
icon: 'mdi-dribbble',
text: 'Follow us on Dribbble',
},
{
color: '#FF4500',
icon: 'mdi-reddit',
text: 'Repost - 232',
},
],
}),
}
{
color: '#3B5998',
icon: 'mdi-facebook',
text: 'Share - 2.2K'
},
{
color: '#DD4b39',
icon: 'mdi-google-plus',
text: 'Share on Google+'
},
{
color: '#0976B4',
icon: 'mdi-linkedin',
text: 'Connect with LinkedIn'
},
{
color: '#CC2127',
icon: 'mdi-pinterest',
text: 'Pint It - 212'
},
{
color: '#E52D27',
icon: 'mdi-youtube',
text: 'View on Youtube'
},
{
color: '#35465C',
icon: 'mdi-tumblr',
text: 'Repost'
},
{
color: '#333333',
icon: 'mdi-github-circle',
text: 'Connect with Github'
},
{
color: '#1769FF',
icon: 'mdi-behance',
text: 'Follow Us'
},
{
color: '#EA4C89',
icon: 'mdi-dribbble',
text: 'Follow us on Dribbble'
},
{
color: '#FF4500',
icon: 'mdi-reddit',
text: 'Repost - 232'
}
]
})
}
</script>

View File

@@ -31,7 +31,7 @@
contain
>
<v-img
src="https://demos.creative-tim.com/vuetify-material-dashboard/favicon.ico"
src="favicon.ico"
max-height="30"
/>
</v-list-item-avatar>