diff --git a/springSpotifyPlayList/README.md b/springSpotifyPlayList/README.md index ce7af7068..af6e85eb8 100644 --- a/springSpotifyPlayList/README.md +++ b/springSpotifyPlayList/README.md @@ -1,4 +1,4 @@ -# SpringSpotify PlayList +# Spotify PlayList
Preview URL: @@ -159,7 +126,7 @@ export default { maxPopularity: 100, minPopularity: 0, seedArtistId: "4sJCsXNYmUMeumUKVz4Abm", - seedGenres: "electric", + seedGenres: "electro", seedTrack: "1ZFQgnAwHaAhAn1o2bkwVs", targetPopularity: 50, tracks: null, @@ -269,4 +236,27 @@ export default { max-height: 300px; margin-top: 10px; } + +.btn-outline-light { + border-color: #1db954; + color: #1db954; + font-size: 1.2rem; + font-weight: bold; + padding: 10px 20px; + border-radius: 30px; + text-transform: uppercase; + cursor: pointer; + transition: background-color 0.3s ease, color 0.3s ease; +} + +.btn-outline-light:hover { + background-color: #1db954; + color: #fff; +} + +.button-group { + display: flex; + gap: 15px; + margin-top: 20px; +} \ No newline at end of file diff --git a/springSpotifyPlayList/frontend/spotify-playlist-ui/vue.config.js b/springSpotifyPlayList/frontend/spotify-playlist-ui/vue.config.js index 910e297e0..783a0819b 100644 --- a/springSpotifyPlayList/frontend/spotify-playlist-ui/vue.config.js +++ b/springSpotifyPlayList/frontend/spotify-playlist-ui/vue.config.js @@ -1,4 +1,5 @@ const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ - transpileDependencies: true -}) + transpileDependencies: true, + publicPath: process.env.NODE_ENV === 'production' ? '/' : '/' +}) \ No newline at end of file